Skip to content
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

33Across: Updated exchange endpoint #1738

Merged
merged 24 commits into from
Mar 5, 2021
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
cfb4cea
add video support
curlyblueeagle Oct 28, 2020
b37978e
renamed folder for tests per code review from Prebid
curlyblueeagle Nov 4, 2020
e248833
updated path to renamed test folder
curlyblueeagle Nov 4, 2020
820fb30
Added more unit tests
curlyblueeagle Nov 6, 2020
193c42f
Merge pull request #1 from 33Across/add_test_coverage
curlyblueeagle Nov 6, 2020
67e04cd
Added a newline between structs
curlyblueeagle Nov 9, 2020
8725d45
breaking up multi-imps
curlyblueeagle Dec 1, 2020
88dfe5e
Added tests for multi-imp
curlyblueeagle Dec 2, 2020
a29a0f7
Adding caller info
curlyblueeagle Dec 2, 2020
0b02576
We do not support app
curlyblueeagle Dec 3, 2020
662c02d
fixed typo in debug messages
curlyblueeagle Dec 3, 2020
9a6a4e0
removed confusing comment
curlyblueeagle Dec 3, 2020
a14bb1b
removed outdated comments
curlyblueeagle Dec 3, 2020
8f35484
Merge pull request #2 from 33Across/handle_multi-imp_requests
curlyblueeagle Dec 3, 2020
5f20987
Merge branch 'master' of https://github.com/prebid/prebid-server
curlyblueeagle Dec 3, 2020
7ac08dd
Code review feedback
curlyblueeagle Dec 8, 2020
79bf68b
Refactored creating request ext
curlyblueeagle Dec 14, 2020
29f98fd
More optimizations based on code review
curlyblueeagle Dec 16, 2020
3827313
Fixed comments
curlyblueeagle Dec 16, 2020
171a13d
made better comments
curlyblueeagle Dec 16, 2020
bc77e9a
fixed endpoint to s2s
curlyblueeagle Mar 5, 2021
a0dd8b5
Merge pull request #3 from 33Across/s2s_endpoint_fix
curlyblueeagle Mar 5, 2021
11103a3
Merge branch 'master' of https://github.com/prebid/prebid-server
curlyblueeagle Mar 5, 2021
242c792
Merge branch 'master' of https://github.com/33Across/prebid-server
curlyblueeagle Mar 5, 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
2 changes: 1 addition & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -797,7 +797,7 @@ func SetupViper(v *viper.Viper, filename string) {
// Disabling adapters by default that require some specific config params.
// If you're using one of these, make sure you check out the documentation (https://github.com/prebid/prebid-server/tree/master/docs/bidders)
// for them and specify all the parameters they need for them to work correctly.
v.SetDefault("adapters.33across.endpoint", "http://ssc.33across.com/api/v1/hb")
v.SetDefault("adapters.33across.endpoint", "https://ssc.33across.com/api/v1/s2s")
v.SetDefault("adapters.33across.partner_id", "")
v.SetDefault("adapters.acuityads.endpoint", "http://{{.Host}}.admanmedia.com/bid?token={{.AccountID}}")
v.SetDefault("adapters.adform.endpoint", "https://adx.adform.net/adx")
Expand Down