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
FPD allows you to specify key-value pairs which will be passed as part of the
336
+
FPD allows you to specify key-value pairs that are passed as part of the
326
337
query string to IX for use in Private Marketplace Deals which rely on query
327
338
string targeting for activation. For example, if a user is viewing a
328
339
news-related page, you can pass on that information by sending `category=news`.
329
-
Then in the IX Private Marketplace setup screens you can create Deals which
330
-
activate only on pages which contain `category=news`. Please reach out to your
340
+
Then in the IX Private Marketplace setup screens, you can create Deals which
341
+
activate only on pages that contain `category=news`. Please reach out to your
331
342
IX representative if you have any questions or need help setting this up.
332
343
333
344
To include FPD in a bid request, it must be set before `pbjs.requestBids` is
@@ -363,13 +374,41 @@ such:
363
374
```javascript
364
375
pbjs.setConfig({
365
376
ix: {
366
-
timeout:250
377
+
timeout:50
367
378
}
368
379
});
369
380
```
370
381
371
382
The timeout value must be a positive whole number in milliseconds.
372
383
384
+
## IX Prebid Server Adapter
385
+
386
+
Publishers who would like to retrieve IX demand via a Prebid Server instance can do so by adding IX to the list of bidders for a Prebid Server bid request, with a valid site ID. For example:
387
+
388
+
```javascript
389
+
"imp": [
390
+
{
391
+
"id":"test2",
392
+
"banner": {
393
+
"format": [
394
+
{
395
+
"w":300,
396
+
"h":600
397
+
}
398
+
]
399
+
},
400
+
"ext": {
401
+
"ix": {
402
+
"siteId":"12345"
403
+
}
404
+
}
405
+
}
406
+
]
407
+
```
408
+
409
+
### Important Prebid Server Note
410
+
Any party operating their own hosted Prebid Server instances must reach out to IX ([email protected]) to receive approval and customized setup instructions. Please do not send Prebid Server requests without first contacting us -- you will not receive bid responses.
411
+
373
412
## Additional Information
374
413
375
414
### Bid Request Limit
@@ -402,9 +441,9 @@ unit we require the size to be explicitly stated.
402
441
2. An ad unit may have sizes that IX does not support. By explicitly stating the
403
442
size, you can choose not to have IX bid on certain sizes that are invalid.
404
443
405
-
### How do I view IX's bid request in the network?
444
+
### How can I view the bid request sent to IX by Prebid.js?
406
445
407
446
In your browser of choice, create a new tab and open the developer tools. In
408
447
developer tools, select the network tab. Then, navigate to a page where IX is
409
-
setup to bid. Now, in the network tab, search for requests to
448
+
set up to bid. Now, in the network tab, search for requests to
410
449
`casalemedia.com/cygnus`. These are the bid requests.
0 commit comments