-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add notes on handling pbs only bidders #834
Conversation
CC @dbemiller |
@@ -43,6 +43,8 @@ Prebid Server is an open source project. [The source code is hosted under the P | |||
## Step 2. Download Prebid.js with Prebid Server enabled | |||
|
|||
- Go to [the Prebid.org download page]({{site.baseurl}}/download.html), select all the demand adapters you want to work with, and include "Prebid Server". | |||
- Some Prebid Server demand adapters may not have a corresponding client-side adapter that's present on the download page. In this case, just ensure to select "Prebid Server" as part of your build and you will be able to interact with these Prebid Server only bidders. | |||
- In lieu of the point above, we still strongly recommend to select any listed demand adapters in your build. These additional selections will allow any client-side features (such as userSyncs) to function as well as allow you to easily use any of the adapter's currently registered aliases. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'In lieu of' means 'Instead of' -- I think you mean "despite the point above", but I recommend dropping the whole clause.
@@ -124,6 +126,10 @@ pbjs.que.push(function() { | |||
**OpenRTB Endpoint** | |||
If your `s2sConfig.endpoint` points to a url containing the path `/openrtb2/`, such as the AppNexus-hosted endpoint https://prebid.adnxs.com/pbs/v1/openrtb2/auction', Prebid will communicate with that endpoint using the OpenRTB protocol. | |||
|
|||
{: .alert.alert-info :} | |||
**Aliasing Prebid Server only bidders** | |||
If you wish to set/use an alias for a Prebid Server only bidders, simply list the alias in your `s2sConfig.bidders` field and call the [`pbjs.aliasBidder` method](http://prebid.org/dev-docs/publisher-api-reference.html#module_pbjs.aliasBidder) in your prebid code (prior to the `pbjs.requestBids`) to register the alias. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Plurality doesn't match here... change bidders
to bidder
?
Thanks for the feedback @bretg, I have made the changes you recommended. |
thanks @jsnellbaker |
released with 1.15 |
Documentation updates related to prebid/Prebid.js#2704
Add notes about how to handle PBS only bidders for anyone using PBS.