-
Notifications
You must be signed in to change notification settings - Fork 222
AudienceNetwork (S2S): add missing ext.security_app_id in OpenRTB requests to fix production auth failures #4196
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
base: master
Are you sure you want to change the base?
Changes from all commits
ffb6697
c021d3e
4ba4227
6ee5138
740292a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,11 +1,17 @@ | ||
| package org.prebid.server.bidder.audiencenetwork.proto; | ||
|
|
||
| import com.fasterxml.jackson.annotation.JsonProperty; | ||
| import lombok.Value; | ||
|
|
||
| @Value(staticConstructor = "of") | ||
| public class AudienceNetworkExt { | ||
|
|
||
| @JsonProperty("platformid") | ||
| String platformid; | ||
|
|
||
| @JsonProperty("authentication_id") | ||
| String authenticationId; | ||
|
|
||
| @JsonProperty("security_app_id") | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| String securityAppId; | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -38,6 +38,7 @@ | |
| }, | ||
| "ext": { | ||
| "authentication_id": "48b7d18b921be9887a5351f31cc85f1326e3da1d8c402dec2bd338cf10bd6b43", | ||
| "platformid": "101" | ||
| "platformid": "101", | ||
| "security_app_id": "101" | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. May I ask you to change values of the properties to something more readable like "authentication_id": "authentication_id",
"platformid": "platformid",
"security_app_id": "platformid"It'll be much more readable P.S. I'd nice if you do the same in the
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ok, thanks @AntoxaAntoxic |
||
| } | ||
| } | ||
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.
please fix formatting