Skip to content

Commit

Permalink
Merge branch 'master' into ceeIdSystem
Browse files Browse the repository at this point in the history
  • Loading branch information
decemberWP authored Jul 19, 2024
2 parents 461f63f + 39926b8 commit 1ae2062
Show file tree
Hide file tree
Showing 65 changed files with 1,693 additions and 538 deletions.
8 changes: 0 additions & 8 deletions _data/sidebar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -257,14 +257,6 @@
sectionTitle:
subgroup: 1

- sbSecId: 1
title: Legacy Browser Example
link: /dev-docs/examples/legacy-browser-example.html
isHeader: 0
isSectionHeader: 0
sectionTitle:
subgroup: 1

- sbSecId: 1
title: Using Prebid.js with Microsoft Monetize Ad Server
link: /dev-docs/examples/use-prebid-with-appnexus-ad-server.html
Expand Down
15 changes: 14 additions & 1 deletion dev-docs/analytics/concert.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,21 @@ title: Concert
description: Concert Analytics Adapter
modulecode: concert
enable_download: false
prebid_member: false
tcfeu_supported: false
usp_supported: true
gvl_id: N/A
coppa_supported: false
---

#### Registration

Please visit [concert.io](https://concert.io/) for more information.
The Concert analytics adapter requires setup and approval from the Concert team. Please reach out to <support@concert.io> or visit [concert.io](https://concert.io/) for more information.

### Example Configuration

```javascript
pbjs.enableAnalytics({
provider: 'concert',
});
```
10 changes: 9 additions & 1 deletion dev-docs/analytics/intentiq.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@ No registration for this module is required.

#### Intent IQ Universal ID Configuration

<b>IMPORTANT</b>: requires Intent IQ Universal ID module be installed and configured. [(How-To)](https://docs.prebid.org/dev-docs/modules/userid-submodules/intentiq.html)
**IMPORTANT**: only effective when Intent IQ Universal ID module be installed and configured. [(How-To)](https://docs.prebid.org/dev-docs/modules/userid-submodules/intentiq.html)

No additional configuration for this module is required. We will use the configuration provided for Intent IQ Universal IQ module.

#### Example Configuration

```js
pbjs.enableAnalytics({
provider: 'iiqAnalytics'
});
```
121 changes: 121 additions & 0 deletions dev-docs/bidders/1accord.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
---
layout: bidder
title: 1accord
description: Prebid 1accord Bidder Adapter
pbjs: true
biddercode: 1accord
aliasCode : nexx360
gvl_id: 965 (nexx360)
tcfeu_supported: true
usp_supported: true
gpp_supported: true
schain_supported: true
dchain_supported: false
floors_supported: true
userIds: all
tcf2_supported: true
media_types: banner, video, native
safeframes_ok: true
deals_supported: true
sidebarType: 1
fpd_supported: true

---

### Bid Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|---------------|----------|----------------------------|-------------------------------------- |-----------|
| `tagId` | required | tag ID | `"testnexx"` | `string` |

### First Party Data

Publishers should use the `ortb2` method of setting [First Party Data](https://docs.prebid.org/features/firstPartyData.html).
The following fields are supported:

* ortb2.site.ext.data.*
* ortb2.site.content.data[]
* ortb2.user.ext.data.*
* ortb2.user.data[]

### Test Parameters

```javascript
var adUnits = [
// Banner adUnit
{
code: 'banner-div',
mediaTypes: {
banner: {
sizes: [[300, 250], [300,600]]
}
},
bids: [{
bidder: '1accord',
params: {
tagId: 'testnexx'
}
}]
},
// Video adUnit
{
code: 'video1',
mediaTypes: {
video: {
playerSize: [640, 480],
context: 'instream'
}
},
bids: [{
bidder: '1accord',
params: {
tagId: 'testnexx'
}
}]
},
// Native adUnit
{
code: 'native1',
mediaTypes:
native: {
title: {
required: true
},
image: {
required: true
},
sponsoredBy: {
required: true
}
}
},
bids: [{
bidder: '1accord',
params: {
tagId: 'testnexx'
}
}]
},
// Multiformat Ad
{
code: 'multi1',
mediaTypes: {
video: {
playerSize: [640, 480],
context: 'instream'
},
banner: {
sizes: [[300, 250], [300,600]]
}
},
bids: [{
bidder: '1accord',
params: {
tagId: 'testnexx',
videoTagId: 'testnexx'
}
}]
};
];
```
19 changes: 17 additions & 2 deletions dev-docs/bidders/adnuntius.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ pbjs.setBidderConfig({
});
```

### Disable cookies for adnuntius
### Disable cookies for Adnuntius

You have the option to tell adnuntius not to set cookies in your browser. This does not mean that third party ads being served through the ad server will not set cookies. Just that Adnuintius will not set it for internal ads.
You have the option to tell adnuntius not to set cookies in your browser. This does not mean that third party ads being served through the ad server will not set cookies. Just that Adnuntius will not set it for internal ads.

```js
pbjs.setBidderConfig({
Expand All @@ -101,6 +101,21 @@ pbjs.setBidderConfig({

Use cookie will always be set to true by default. Changing it to false will disable cookies.

### Trigger Advertiser Transparency Mode in Adnuntius

You have the option to tell Adnuntius to only serve ads that have their Advertiser's legal name specified.

```js
pbjs.setBidderConfig({
bidders: ['adnuntius'],
config: {
advertiserTransparency: true
}
});
```

By default, `advertiserTransparency` is set to `false`, meaning there is no restriction on which ads can deliver. By setting `advertiserTransparency` to `true`, ad delivery is restricted to those that have their Advertiser's legal name specified.

### Prebid Server Test Request

The following test parameters can be used to verify that Prebid Server is working properly with the server-side Adnuntius adapter. the `auId` below will not return a creative. Please substitute it with your own.
Expand Down
47 changes: 0 additions & 47 deletions dev-docs/bidders/bizzclick.md

This file was deleted.

48 changes: 48 additions & 0 deletions dev-docs/bidders/blasto.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
---
layout: bidder
title: Blasto
description: Prebid Blasto Bidder Adaptor
biddercode: blasto
tcfeu_supported: false
usp_supported: true
coppa_supported: true
schain_supported: true
media_types: banner, video, native
safeframes_ok: true
deals_supported: true
pbjs: true
pbs: true
pbs_app_supported: true
sidebarType: 1
floors_supported: true
prebid_member: false
fpd_supported: false
gvl_id: none
multiformat_supported: will-bid-on-one
ortb_blocking_supported: true
userIds: all
---

### Note

The Example Bidding adapter requires setup before beginning. Please contact us at <support@blasto.ai>.
Blasto will only respond to the first impression.

### Bid Params for Prebid Server
Blasto supports diffrent regions for the prebid server. By default US East.
Please deploy the prebid config in each of your datacenters with the appropriate regional subdomain.

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|---------------|----------|-----------------------|-----------|-----------|
| `sourceId` | required | Unique hash provided by blasto | `'6dllcEHSxYdSb6yLmCqE'` | `string` |
| `accountId` | required | Unique name provided by blasto | `'blasto-test'` | `string` |

### Bid Params for Prebid.js

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|---------------|----------|-----------------------|-----------|-----------|
| `sourceId` | required | Unique hash provided by blasto | `'6dllcEHSxYdSb6yLmCqE'` | `string` |
| `accountId` | required | Unique name provided by blasto | `'blasto-test'` | `string` |
| `host` | optional | Blasto server region. US East by default | `'us-e-node1'` | `string` |
1 change: 1 addition & 0 deletions dev-docs/bidders/cointraffic.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ layout: bidder
title: Cointraffic
description: Prebid Cointraffic Bidder Adaptor
pbjs: true
pbs: true
biddercode: cointraffic
sidebarType: 1
---
Expand Down
4 changes: 0 additions & 4 deletions dev-docs/bidders/colossus.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@ pbs_app_supported: true
sidebarType: 1
---

### Disclosure

This adapter is known to use an HTTP 1 endpoint. Header bidding often generates multiple requests to the same host and bidders are encouraged to change to HTTP 2 or above to help improve publisher page performance via multiplexing.

### Prebid.Server Bid Params

{: .table .table-bordered .table-striped }
Expand Down
2 changes: 1 addition & 1 deletion dev-docs/bidders/colossusssp.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ sidebarType: 1
| `group_id` | optional | Group Id will be generated on Colossus SSP Platform. Use instead of placement_id | `0` | `integer` |
| `traffic` | optional | Type traffic | `'banner'` | `string` |

*For colossus prebid server parametres, look into colossus.md*
*For colossus prebid server parameters, look into colossus.md*
5 changes: 4 additions & 1 deletion dev-docs/bidders/concert.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@ title: Concert
description: Prebid Concert Bidder Adaptor
hide: true
pbjs: true
pbs: true
biddercode: concert
media_types: banner
media_types: banner, audio, video
pbs_app_supported: true
deals_supported: true
tcfeu_supported: false
usp_supported: true
gpp_supported: true
Expand Down
Loading

0 comments on commit 1ae2062

Please sign in to comment.