forked from prebid/prebid-server
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add PubMatic bidder doc file (prebid#1255)
* Add app video capability to PubMatic bidder info file
- Loading branch information
1 parent
f5e18d1
commit cbdcd7e
Showing
1 changed file
with
33 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# PubMatic Bidder | ||
|
||
## Test Request | ||
|
||
The following test parameters can be used to verify that Prebid Server is working properly with the | ||
PubMatic adapter. This example includes an `imp` object with an PubMatic test publisher ID, ad slot, | ||
and sizes that would match with the test creative. | ||
|
||
``` | ||
"imp":[ | ||
{ | ||
"id":“"some-impression-id”, | ||
"banner":{ | ||
"format":[ | ||
{ | ||
"w":300, | ||
"h":250 | ||
}, | ||
{ | ||
"w":300, | ||
"h":600 | ||
} | ||
] | ||
}, | ||
"ext":{ | ||
"pubmatic":{ | ||
"publisherId":“156276”, | ||
"adSlot":"pubmatic_test" | ||
} | ||
} | ||
} | ||
] | ||
``` |