Skip to content

Commit

Permalink
Add new docs for our Taboola adapter (#3760)
Browse files Browse the repository at this point in the history
* create new adapter docs for taboola bidder

* small fixes

* small fixes

* Reposition the CSS directive

Reposition the styling directive.
Split the 'Note' into 2 sections.
Make minor textual tweaks.

* create new adapter docs for taboola bidder

* small fixes

* small fixes

* Reposition the CSS directive

Reposition the styling directive.
Split the 'Note' into 2 sections.
Make minor textual tweaks.

* Update taboola.md

disable the support of: schain_supported

Co-authored-by: pcimring-taboola <57901387+pcimring-taboola@users.noreply.github.com>
  • Loading branch information
mikizi and pcimring-taboola authored May 26, 2022
1 parent f756cfe commit ad7408e
Showing 1 changed file with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions dev-docs/bidders/taboola.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
---
layout: bidder
title: Taboola
description: Prebid Taboola Bidder Adapter
pbjs: true
biddercode: taboola
gdpr_supported: true
usp_supported: true
coppa_supported: true
schain_supported: false
media_types: banner
gvl_id: 42
prebid_member: true
floors_supported: true
safeframes_ok: true
---

### Note
- Supports `display` format.
- Uses `OpenRTB` standard.

### Registration

The Taboola Adapter requires setup before beginning. Please contact us at prebid@taboola.com.

### Bid Params

{: .table .table-bordered .table-striped }

| Name | Scope | Description | Example | Type |
|----------------|----------|---------------------------------------------------------|----------------------------|--------------|
| `tagId` | required | Tag ID / Placement Name <br>(as provided by Taboola) | `'Below The Article'` | `String` |
| `publisherId` | required | Alphabetic Publisher ID <br>(as provided by Taboola) | `'acme-publishing'` | `String` |
| `bcat` | optional | List of blocked advertiser categories (IAB) | `['IAB1-1']` | `Array` |
| `badv` | optional | Blocked Advertiser Domains | `'example.com'` | `String Url` |
| `bidfloor` | optional | CPM bid floor | `0.25` | `Integer` |


### Example Ad Unit
```javascript
var adUnits = [{
code: 'your-unit-container-id',
mediaTypes: {
banner: {
sizes: [[300, 250], [300,600]]
}
},
bids: [{
bidder: 'taboola',
params: {
tagId: 'Placement Name',
publisherId: 'your-publisher-id',
bidfloor: 0.25, // Optional - default is null
bcat: ['IAB1-1'], // Optional - default is []
badv: ['example.com'] // Optional - default is []
}
}]
}];
```

0 comments on commit ad7408e

Please sign in to comment.