forked from prebid/prebid.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Contxtful Bidder adapter: New Documentation (prebid#5607)
* doc: contxtful markdown, first draft * doc: remove unset, add schain, fdp * doc: add user sync recommendation * doc: typo * doc: wildcard no go --------- Co-authored-by: GosselinV <[email protected]>
- Loading branch information
1 parent
5cc4836
commit b1aae2f
Showing
1 changed file
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
--- | ||
layout: bidder | ||
title: Contxtful | ||
description: Prebid Contxtful Bidder Adapter | ||
biddercode: contxtful | ||
tcfeu_supported: false | ||
usp_supported: true | ||
coppa_supported: true | ||
schain_supported: true | ||
userId: all | ||
media_types: banner, video, audio | ||
safeframes_ok: true | ||
floors_supported: true | ||
fpd_supported: true | ||
pbjs: true | ||
pbs: false | ||
pbs_app_supported: false | ||
prebid_member: true | ||
multiformar_supported: will-bid-on-any | ||
ortb_blocking_supported: true | ||
--- | ||
|
||
# Note | ||
|
||
The Contxtful bidder adapter requires some setup. Contact us at [[email protected]](mailto:[email protected]) | ||
|
||
## User Sync | ||
Contxtful recommends enabling [User Syncing](https://docs.prebid.org/dev-docs/publisher-api-reference/setConfig.html#setConfig-Configure-User-Syncing) to optimize match rate and monetization. | ||
|
||
```javascript | ||
// Enable iframe usersync | ||
pbjs.setConfig({ | ||
userSync: { | ||
filterSettings: { | ||
iframe: { | ||
bidders: ['contxtful'], | ||
filter: 'include' | ||
} | ||
} | ||
} | ||
}); | ||
|
||
// Allow local storage usage | ||
pbjs.bidderSettings = { | ||
contxtful: { | ||
storageAllowed: true | ||
} | ||
} | ||
``` |