Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename idWardRtdProvider to anonymisedRtdProvider #10176

Merged
merged 15 commits into from
Apr 26, 2024
Prev Previous commit
Next Next commit
updated readme description
  • Loading branch information
Pavlo committed Dec 14, 2023
commit 57c63bdf9940dee7f46a0d57891644c1a04acfb1
3 changes: 2 additions & 1 deletion integrationExamples/gpt/anonymised_segments_example.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@
name: "anonymised",
params: {
cohortStorageKey: "cohort_ids",
bidders: ['smartadserver', 'appnexus']
bidders: ['smartadserver', 'appnexus'],
segtax: 1000
}
}
]
Expand Down
7 changes: 5 additions & 2 deletions modules/anonymisedRtdProvider.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ Anonymised’s Real-time Data Provider automatically obtains segment IDs from th
name: "anonymised",
waitForIt: true,
params: {
cohortStorageKey: "cohort_ids"
cohortStorageKey: "cohort_ids",
bidders: ["smartadserver", "appnexus"],
segtax: 1000
}
}
]
Expand All @@ -37,7 +39,8 @@ Anonymised’s Real-time Data Provider automatically obtains segment IDs from th
| name | String | Anonymised Rtd module name | 'anonymised' always|
| waitForIt | Boolean | Required to ensure that the auction is delayed until prefetch is complete | Optional. Defaults to false |
| params.cohortStorageKey | String | the `localStorage` key, under which Anonymised Marketing Tag stores the segment IDs | 'cohort_ids' always |
| params.bidders | `Array` | Bidders with which to share segment information | Required |
| params.bidders | Array | Bidders with which to share segment information | Required |
| params.segtax | Integer | The taxonomy for Anonymised | '1000' always |

Please note that anonymisedRtdProvider should be integrated into the publisher website along with the [Anonymised Marketing Tag](https://support.anonymised.io/integrate/marketing-tag).
Please reach out to Anonymised [representative](mailto:[email protected]) if you have any questions or need further help to integrate Prebid, anonymisedRtdProvider, and Anonymised Marketing Tag
Expand Down