From 0947c7ac9a6ad6757881bdb12ea3722de95332cf Mon Sep 17 00:00:00 2001 From: Reda Guermas Date: Mon, 30 Dec 2019 11:26:36 -0800 Subject: [PATCH 1/7] Adde support for CCPA --- dev-docs/bidders/nobidBidAdapter.md | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-docs/bidders/nobidBidAdapter.md b/dev-docs/bidders/nobidBidAdapter.md index b80a7f6c4b..9e47aa5f43 100644 --- a/dev-docs/bidders/nobidBidAdapter.md +++ b/dev-docs/bidders/nobidBidAdapter.md @@ -6,6 +6,7 @@ biddercode: nobid hide: true media_types: banner gdpr_supported: true +usp_supported: true --- ### Bid Params From 778d74a204c4155f6484a12edf82eef0448abcb7 Mon Sep 17 00:00:00 2001 From: Reda Guermas Date: Tue, 7 Mar 2023 21:37:13 -0800 Subject: [PATCH 2/7] Added support for Floors for the NoBid Adapter. --- dev-docs/bidders/nobid.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-docs/bidders/nobid.md b/dev-docs/bidders/nobid.md index 308a7e4233..cbfdd86306 100644 --- a/dev-docs/bidders/nobid.md +++ b/dev-docs/bidders/nobid.md @@ -1,7 +1,7 @@ --- layout: bidder title: Nobid -description: Prebid Nobid Bidder Adaptor +description: Prebid NoBid Bidder Adaptor biddercode: nobid pbjs: true pbs: true @@ -14,6 +14,7 @@ coppa_supported: true userId: criteo, unifiedId, id5Id safeframes_ok: true sidebarType: 1 +floors_supported: true --- ### Bid Params From 18a4bd040282c3a2965036cc035ff2d9ea93313b Mon Sep 17 00:00:00 2001 From: Reda Guermas Date: Thu, 27 Jul 2023 12:24:05 -0700 Subject: [PATCH 3/7] Added support for GPP. --- dev-docs/bidders/nobid.md | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-docs/bidders/nobid.md b/dev-docs/bidders/nobid.md index cbfdd86306..e1e1b24e95 100644 --- a/dev-docs/bidders/nobid.md +++ b/dev-docs/bidders/nobid.md @@ -9,6 +9,7 @@ media_types: banner, video gdpr_supported: true gvl_id: 816 usp_supported: true +gpp_supported: true schain_supported: true coppa_supported: true userId: criteo, unifiedId, id5Id From 48956c20ad3bf324a2446da5ad9be460c311faa9 Mon Sep 17 00:00:00 2001 From: Reda Guermas Date: Thu, 27 Jul 2023 12:36:55 -0700 Subject: [PATCH 4/7] Added support for intentIqId User ID module. --- dev-docs/bidders/nobid.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/nobid.md b/dev-docs/bidders/nobid.md index 6d22698c71..401d5a6a98 100644 --- a/dev-docs/bidders/nobid.md +++ b/dev-docs/bidders/nobid.md @@ -12,7 +12,7 @@ usp_supported: true gpp_supported: true schain_supported: true coppa_supported: true -userId: criteo, unifiedId, id5Id +userId: criteo, unifiedId, id5Id, intentIqId safeframes_ok: true sidebarType: 1 floors_supported: true From 47a8f8d36c0b2401ea9c8c23ae1ba47b79653f70 Mon Sep 17 00:00:00 2001 From: Reda Guermas Date: Thu, 24 Aug 2023 14:01:22 -0700 Subject: [PATCH 5/7] Added NoBid Analytics Module documentation. --- dev-docs/analytics/nobid.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 dev-docs/analytics/nobid.md diff --git a/dev-docs/analytics/nobid.md b/dev-docs/analytics/nobid.md new file mode 100644 index 0000000000..eb5bf5be46 --- /dev/null +++ b/dev-docs/analytics/nobid.md @@ -0,0 +1,34 @@ +--- +layout: analytics +title: NoBid +description: NoBid Analytics Adaptor +modulecode: nobidAnalytics +gvl_id: 816 +enable_download: false +--- + +#### Registration + +The NoBid Analytics Adapter is free to use during our Beta period, but requires a simple registration with NoBid. +Please visit [www.nobid.io](https://www.nobid.io/contact-1/) to sign up and request your Publisher ID Number to get started. If you're already using the NoBid Bid Adapter, you may use your existing Site ID Number with the analytics adapter. + +The NoBid privacy policy is at [nobid.io/privacy-policy](https://www.nobid.io/privacy-policy/). + +#### Analytics Options + +{: .table .table-bordered .table-striped } +| Parameter | Scope | Type | Description | Example | +| --- | --- | --- | --- | --- | +| provider | Required | String | The name of this module: `nobidAnalytics` | `nobidAnalytics` | +| options.siteId | Required | Number | This is the NoBid Site ID Number obtained from registering with NoBid. | `1234` | + +### Example Configuration + +```javascript +pbjs.enableAnalytics({ + provider: 'nobidAnalytics', + options: { + siteId: 123 // change to the Site ID you received from NoBid + } +}); +``` \ No newline at end of file From 05a5979da88a9411f2f8258fc22fd6d2f96fc5f5 Mon Sep 17 00:00:00 2001 From: Reda Guermas Date: Thu, 24 Aug 2023 14:21:23 -0700 Subject: [PATCH 6/7] Added trailing spaces --- dev-docs/analytics/nobid.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/analytics/nobid.md b/dev-docs/analytics/nobid.md index eb5bf5be46..db019b8c79 100644 --- a/dev-docs/analytics/nobid.md +++ b/dev-docs/analytics/nobid.md @@ -31,4 +31,4 @@ pbjs.enableAnalytics({ siteId: 123 // change to the Site ID you received from NoBid } }); -``` \ No newline at end of file +``` From c4172b8b8927539aea63dff49dd0367f28c45b3b Mon Sep 17 00:00:00 2001 From: Reda Guermas Date: Thu, 24 Aug 2023 14:24:30 -0700 Subject: [PATCH 7/7] Fix trailing spaces --- dev-docs/analytics/nobid.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/dev-docs/analytics/nobid.md b/dev-docs/analytics/nobid.md index db019b8c79..a34bd9b5a5 100644 --- a/dev-docs/analytics/nobid.md +++ b/dev-docs/analytics/nobid.md @@ -9,8 +9,7 @@ enable_download: false #### Registration -The NoBid Analytics Adapter is free to use during our Beta period, but requires a simple registration with NoBid. -Please visit [www.nobid.io](https://www.nobid.io/contact-1/) to sign up and request your Publisher ID Number to get started. If you're already using the NoBid Bid Adapter, you may use your existing Site ID Number with the analytics adapter. +The NoBid Analytics Adapter is free to use during our Beta period, but requires a simple registration with NoBid. Please visit [www.nobid.io](https://www.nobid.io/contact-1/) to sign up and request your Publisher ID Number to get started. If you're already using the NoBid Bid Adapter, you may use your existing Site ID Number with the analytics adapter. The NoBid privacy policy is at [nobid.io/privacy-policy](https://www.nobid.io/privacy-policy/). @@ -28,7 +27,7 @@ The NoBid privacy policy is at [nobid.io/privacy-policy](https://www.nobid.io/pr pbjs.enableAnalytics({ provider: 'nobidAnalytics', options: { - siteId: 123 // change to the Site ID you received from NoBid + siteId: 123 // change to the Site ID you received from NoBid } }); ```