-
Notifications
You must be signed in to change notification settings - Fork 742
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 (#1255)
* Add app video capability to PubMatic bidder info file
- Loading branch information
1 parent
f1f2b09
commit 210bce4
Showing
2 changed files
with
34 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" | ||
} | ||
} | ||
} | ||
] | ||
``` |
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 |
---|---|---|
|
@@ -4,6 +4,7 @@ capabilities: | |
app: | ||
mediaTypes: | ||
- banner | ||
- video | ||
site: | ||
mediaTypes: | ||
- banner | ||
|