You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: adops/setting-up-prebid-video-in-dfp.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ For complete instructions on setting up Prebid line items in Google Ad Manager,
29
29
{: .alert.alert-info :}
30
30
For engineering setup instructions, see [Show Video Ads with a Google Ad Manager Video Tag](/dev-docs/show-video-with-a-dfp-video-tag.html).
31
31
32
-
Each VAST creative contains a URL that points to the cached VAST XML. (This is because most video players can only work with a URL that returns VAST XML.) When setting up video creatives, it's important to understand where the VAST XML is stored for each of your bidders. The most common place to store VAST XML is the AppNexus cache, but some bidders (such as RubiconProject and SpotX) use their own cache services. To support such bidders, see [Multiple Cache Locations](#multiple-cache-locations) below.
32
+
Each VAST creative contains a URL that points to the cached VAST XML. (This is because most video players can only work with a URL that returns VAST XML.) When setting up video creatives, it's important to understand where the VAST XML is stored for each of your bidders. Prebid.js supports server-side, client-side, and local caching as outlined in [pbjs.setConfig documentation](/dev-docs/publisher-api-reference/setConfig.html#client-side-caching-of-vast-xml). See [Multiple Cache Locations](#multiple-cache-locations) below for details on bidder-specific cache locations.
33
33
34
34
## Single Cache Location
35
35
@@ -55,15 +55,15 @@ Google Ad Manager will show you a warning stating that fetching VAST from the cr
55
55
56
56
If you’re using a Send Top Price Bid configuration, then the VAST URL will be the same for each bidder:
If you’re using Send All Bids, the VAST URL will include the bidder-specific targeting variable. Be sure to replace `BIDDERCODE` with the actual bidder code for your bidders:
In these examples, the `uuid` is set to the value of the `hb_pb_cat_dur` key you target in your line item. This value consists of the price bucket, label (for competitive exculsions), and video duration. In this example we've specified a price bucket of `50.00`, a label of `news`, and a duration of `30s`. See [GAM with Prebid Step by Step](/adops/step-by-step.html#targeting) for more information.
Copy file name to clipboardExpand all lines: dev-docs/publisher-api-reference/setConfig.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1082,7 +1082,7 @@ Here's an example of basic client-side caching. Substitute your Prebid Cache URL
1082
1082
```javascript
1083
1083
pbjs.setConfig({
1084
1084
cache: {
1085
-
url:'https://prebid.adnxs.com/pbc/v1/cache'
1085
+
url:'https://my-pbs.example.com/cache'
1086
1086
}
1087
1087
});
1088
1088
```
@@ -1127,7 +1127,7 @@ Optionally, `batchSize` and `batchTimeout` can be utlilized as illustrated with
1127
1127
```javascript
1128
1128
pbjs.setConfig({
1129
1129
cache: {
1130
-
url:'https://prebid.adnxs.com/pbc/v1/cache',
1130
+
url:'https://my-pbs.example.com/cache',
1131
1131
batchSize:4,
1132
1132
batchTimeout:50
1133
1133
}
@@ -1151,7 +1151,7 @@ Consider the following Prebid configuration:
1151
1151
```javascript
1152
1152
pbjs.setConfig({
1153
1153
cache: {
1154
-
url:'https://prebid.adnxs.com/pbc/v1/cache',
1154
+
url:'https://my-pbs.example.com/cache',
1155
1155
useLocal:true
1156
1156
}
1157
1157
});
@@ -1160,7 +1160,7 @@ pbjs.setConfig({
1160
1160
When `useLocal` is set to true, the remote cache URL endpoint is never called. However, existing GAM creatives configured with a VAST ad tag URL, such as:
will continue to function correctly. `hb_uuid` is set to locally assigned blob UUID. If the bid wins the GAM auction and it's `videoCacheKey` (`hb_uuid`) is included in a GAM wrapper VAST XML, Prebid will update the VAST ad tag URL with the locally cached blob URL after receiving a response from Google Ad Manager.
Copy file name to clipboardExpand all lines: prebid-video/video-getting-started.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ If you’re using another ad server:
41
41
Follow the instructions for your ad server to create line items for the in-player integration. The primary points to keep in mind as you set up your line items include:
42
42
43
43
- Line items must target Prebid key-values.
44
-
- The VAST creative URL must be in the format `https://prebid.adnxs.com/pbc/v1/cache?uuid={hb_cache_id}`, where `{hb_cache_id}` is the value passed to the ad server from Prebid.js.
44
+
- The VAST creative URL must be in the format `https://my-pbs.example.com/cache?uuid={hb_cache_id}`, where `{hb_cache_id}` is the value passed to the ad server from Prebid.js.
0 commit comments