-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Catching stage up with master (#2215)
* Privacy updates (#2189) * privacy notice: updates from legal review * download page legal notice * review changes * pubperf analytics adapter added. (#2166) * Add docs for apstream adapter (#2141) * Add docs for apstream adapter * Describe possibility to disable DSU Co-authored-by: Yevhenii Tykhostup <yevhenii.tykhostup@audienceproject.com> * AdButler Bid Adapter: Add 'extra' bid parameter description and example (#2172) * Undertone video docs (#2162) * Update undertone.md Added documentation for recommended configuration settings for undertone which includes iframe based user sync * add video object doc Co-authored-by: Omer Koren <omerko@users.noreply.github.com> * ad ops video fix (#2190) * clarifying that sizeConfig is banner only (#2191) * amp clarification (#2194) * removed stray div * removing apn-specific reference (#2203) * added akamai video player (#2181) Co-authored-by: Steve <ssuranie@appnexus.com> * removing pubcommon support from Rubicon (#2211) * adding concurrent FAQ entry (#2212) * fixed typo in pbadslot example (#2213) * pbadslot implementation ended up moving the location (#2214) * Update CNAME Co-authored-by: Bruce Dou <doubaokun@gmail.com> Co-authored-by: frstua <moyade@gmail.com> Co-authored-by: Yevhenii Tykhostup <yevhenii.tykhostup@audienceproject.com> Co-authored-by: Dan Harton <dan@sparklit.com> Co-authored-by: Oran Hollaender <oran@perion.com> Co-authored-by: Omer Koren <omerko@users.noreply.github.com> Co-authored-by: MartianTribe <steve@martiantribe.com> Co-authored-by: Steve <ssuranie@appnexus.com>
- Loading branch information
1 parent
33e824f
commit d2aad64
Showing
15 changed files
with
224 additions
and
51 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 |
---|---|---|
@@ -1 +1 @@ | ||
prebid.org | ||
docs.prebid.org |
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
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
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,97 @@ | ||
# Overview | ||
|
||
``` | ||
Module Name: AP Stream Bidder Adapter | ||
Module Type: Bidder Adapter | ||
Maintainer: stream@audienceproject.com | ||
gdpr_supported: true | ||
tcf2_supported: true | ||
``` | ||
|
||
# Description | ||
|
||
Module that connects to AP Stream source | ||
|
||
# Inherit from prebid.js | ||
``` | ||
var adUnits = [ | ||
{ | ||
code: '/19968336/header-bid-tag-1', | ||
mediaTypes: { // mandatory and should be only one | ||
banner: { | ||
sizes: [[920,180], [920, 130]] | ||
} | ||
}, | ||
bids: [{ | ||
bidder: 'apstream', | ||
params: { | ||
publisherId: STREAM_PIBLISHER_ID // mandatory | ||
} | ||
}] | ||
} | ||
]; | ||
``` | ||
|
||
# Explicit ad-unit code | ||
``` | ||
var website = null; | ||
switch (location.hostname) { | ||
case "site1.com": | ||
website = "S1"; | ||
break; | ||
case "site2.com": | ||
website = "S2"; | ||
break; | ||
} | ||
var adUnits = [ | ||
{ | ||
code: '/19968336/header-bid-tag-1', | ||
mediaTypes: { // mandatory and should be only one | ||
banner: { | ||
sizes: [[920,180], [920, 130]] | ||
} | ||
}, | ||
bids: [{ | ||
bidder: 'apstream', | ||
params: { | ||
publisherId: STREAM_PIBLISHER_ID, // mandatory | ||
code: website + '_Leaderboard' | ||
} | ||
}] | ||
} | ||
]; | ||
``` | ||
|
||
# Explicit ad-unit ID | ||
``` | ||
var adUnits = [ | ||
{ | ||
code: '/19968336/header-bid-tag-1', | ||
mediaTypes: { // mandatory and should be only one | ||
banner: { | ||
sizes: [[920,180], [920, 130]] | ||
} | ||
}, | ||
bids: [{ | ||
bidder: 'apstream', | ||
params: { | ||
publisherId: STREAM_PIBLISHER_ID, // mandatory | ||
adunitId: 1234 | ||
} | ||
}] | ||
} | ||
]; | ||
``` | ||
|
||
# DSU | ||
|
||
To disable DSU use config option: | ||
|
||
``` | ||
pbjs.setConfig({ | ||
apstream: { | ||
noDsu: true | ||
} | ||
}); | ||
``` |
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
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
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
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
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
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
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
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
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
Oops, something went wrong.