Skip to content
Merged
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
3d3a22a
Add publisher usage docs for 33Across
curlyblueeagle Nov 7, 2017
6fe0e90
Added 33Across to partners list
curlyblueeagle Jul 25, 2018
a646de7
Clarified example pubID
curlyblueeagle Jul 25, 2018
ef959cd
Merge branch 'master' of https://github.com/prebid/prebid.github.io
curlyblueeagle Jul 25, 2018
0e9c804
Reinstated changes that got lost during rebase
curlyblueeagle Jul 25, 2018
6284e9c
Merge branch 'master' of https://github.com/prebid/prebid.github.io
curlyblueeagle Aug 16, 2018
9bdd26e
33across adapter is GDPR compliant
curlyblueeagle Aug 16, 2018
07f5ab5
Merge remote-tracking branch 'upstream/master'
Sep 17, 2018
7608428
update docs
Sep 17, 2018
c4e0fa5
Merge pull request #1 from 33Across/oculus-35-update-bidder-docs
glebglushtsov Sep 17, 2018
cc6c622
Merge branch 'master' of https://github.com/prebid/prebid.github.io
Jun 5, 2020
2dc293c
added usp support
Jun 5, 2020
bf965a1
We support Schain!
Jun 8, 2020
edd13b2
Merge pull request #3 from 33Across/XCH-1862_schain_support
curlyblueeagle Jun 11, 2020
0452a4a
Merge pull request #2 from 33Across/XCH-1859_usp_compliance
curlyblueeagle Jun 11, 2020
976f13a
Update for video support
Oct 20, 2020
e8de9ec
fixes to video params
Oct 20, 2020
0500e85
fixed context
Oct 20, 2020
c7a9356
fixed instream params
Oct 20, 2020
bda725b
fix for multi-format
Oct 20, 2020
c405392
Fixed Ad Unit titles
Oct 20, 2020
bbcae80
protocols is required
Oct 20, 2020
10a7de7
typo fix
Oct 20, 2020
24adeaa
Added required bidder param
Oct 20, 2020
ae4be76
removed duplicate video params
Oct 20, 2020
4781ed1
formatting edits
Oct 20, 2020
6e5b65d
Merge pull request #4 from 33Across/XCH-1994_add_video_support
curlyblueeagle Oct 21, 2020
aeeb4d6
prebid-server adapter will support only single imp reqs
curlyblueeagle Nov 9, 2020
9201870
Updated based in CR
curlyblueeagle Nov 9, 2020
53f59df
minor fix
curlyblueeagle Nov 9, 2020
a583abf
Merge pull request #5 from 33Across/single_imp_support
curlyblueeagle Nov 9, 2020
fb08dd3
resolved merge conflicts
curlyblueeagle Nov 19, 2020
f400c71
Prebid Server adapter to support multi-imps
curlyblueeagle Dec 4, 2020
c8e3c0f
Merge branch 'master' of https://github.com/prebid/prebid.github.io
curlyblueeagle Dec 4, 2020
73db2da
Merge branch 'master' of https://github.com/prebid/prebid.github.io
curlyblueeagle Mar 30, 2021
a8b834e
Merge branch 'master' of https://github.com/prebid/prebid.github.io
curlyblueeagle Jul 1, 2021
20ebae0
Merge branch 'master' of https://github.com/prebid/prebid.github.io
curlyblueeagle Nov 8, 2021
b23220c
Added support for SRA
curlyblueeagle Nov 8, 2021
c6058bb
Merge pull request #8 from 33Across/sra_support
curlyblueeagle Nov 9, 2021
c36f5fc
fixed typo in config
curlyblueeagle Nov 10, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion dev-docs/bidders/33across.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,4 +156,15 @@ var adUnits = [
...
}
```

### SRA Mode
We recommend using SRA mode to optimize the bidding process as this allows our adapter to group together bid requests for Ad Units pertaining to the same product and site ID thereby minimizing the number of http requests made to our endpoint. To enable SRA set the following bidder specific config under 33Across
```
pbjs.setBidderConfig({
bidders: ['33across'],
config: {
ttxSettings: {
enableSRAMode: true
}
}
});
```