Skip to content

Commit

Permalink
PBS coop-sync doc (prebid#3685)
Browse files Browse the repository at this point in the history
  • Loading branch information
bretg authored and jlaso committed Aug 31, 2023
1 parent e646c67 commit 7976233
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions prebid-server/developers/pbs-cookie-sync.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,22 @@ If the publisher has an AMP Consent Management Platform, they should use `load-c

3) At runtime, the `load-cookie` script just calls the Prebid Server /cookie_sync endpoint. The rest works the same as described for Prebid.js above.

### Cooperative Syncing

Prebid Server supports a 'Cooperative Syncing' mode where all enabled bidders may be returned in a sync request even if they aren't on this particular page. This allows bidders to get their IDs in place for the next page where they are utilized.

Cooperative syncing can be configured at the host level. See the doc for [PBS-Java](https://github.com/prebid/prebid-server-java/blob/master/docs/config-app.md) and [PBS-Go](https://github.com/prebid/prebid-server/blob/master/config/usersync.go).

This is how to control the coop syncing behavior from Prebid.js:
```
pbjs.setConfig({
s2sConfig: {
...
coopSync: true,
userSyncLimit: 5
...
}
```

## Bidder Instructions for Building a Sync Endpoint

Expand Down

0 comments on commit 7976233

Please sign in to comment.