This repository has been archived by the owner on Dec 22, 2022. It is now read-only.
forked from prebid/prebid-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pass Through First Party Context Data (prebid#1479)
- Loading branch information
1 parent
e2128b3
commit 322bb3a
Showing
12 changed files
with
769 additions
and
23 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
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
32 changes: 32 additions & 0 deletions
32
...ints/openrtb2/sample-requests/first-party-data/valid-context-allowed-with-ext-bidder.json
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,32 @@ | ||
{ | ||
"description": "The imp.ext.context field is valid for First Party Data and should be exempted from bidder name validation.", | ||
|
||
"requestPayload": { | ||
"id": "some-request-id", | ||
"site": { | ||
"page": "test.somepage.com" | ||
}, | ||
"imp": [{ | ||
"id": "some-imp-id", | ||
"banner": { | ||
"format": [{ | ||
"w": 600, | ||
"h": 500 | ||
}, { | ||
"w": 300, | ||
"h": 600 | ||
}] | ||
}, | ||
"ext": { | ||
"appnexus": { | ||
"placementId": 12883451 | ||
}, | ||
"context": { | ||
"data": { | ||
"keywords": "prebid server example" | ||
} | ||
} | ||
} | ||
}] | ||
} | ||
} |
36 changes: 36 additions & 0 deletions
36
...s/openrtb2/sample-requests/first-party-data/valid-context-allowed-with-prebid-bidder.json
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,36 @@ | ||
{ | ||
"description": "The imp.ext.context field is valid for First Party Data and should be exempted from bidder name validation.", | ||
|
||
"requestPayload": { | ||
"id": "some-request-id", | ||
"site": { | ||
"page": "test.somepage.com" | ||
}, | ||
"imp": [{ | ||
"id": "some-imp-id", | ||
"banner": { | ||
"format": [{ | ||
"w": 600, | ||
"h": 500 | ||
}, { | ||
"w": 300, | ||
"h": 600 | ||
}] | ||
}, | ||
"ext": { | ||
"prebid": { | ||
"bidder": { | ||
"appnexus": { | ||
"placementId": 12883451 | ||
} | ||
} | ||
}, | ||
"context": { | ||
"data": { | ||
"keywords": "prebid server example" | ||
} | ||
} | ||
} | ||
}] | ||
} | ||
} |
Oops, something went wrong.