-
Notifications
You must be signed in to change notification settings - Fork 93
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
Support Tracking Domain #954
Comments
I'd like to propose that we switch the order here... let's assume the main Prebid Server can track, and offer an additional "non-tracking" version of the Prebid Server URL.
Here's what I think the proposal is:
I've opened prebid/prebid-server#3753 to track building a feature in Prebid Server that can recognize when it's invoked in "privacy mode", where it will anonymize key aspects as if the LMT flag were set. |
Discussed with Prebid legal counsel. In short, this general approach is approved.
|
To be on the same page. Why don't you consider client-side anonymization? It's not clear how Apple will decide to add the domain to the list of tracking domains. But if they see that requests don't contain tracking data, it will be harder to add the domain to the list. On the other hand, they may consider the domain a "tracking domain" not by the request's content but just by the ownership of this domain by some business that can track users (advertising domain). And it can be a reason not to perform client-side anonymization. |
@YuriyVelichkoPI - client-side anonymization would be good too. A reason to do it on both sides would be in case there are server-side modules in the future that enrich the request. |
Background
According to the changes in Apple's privacy approach, some SDKs should register the Tracking Domain in the privacy manifest file.
For now, the Prebid SDK is not on the list of such SDKs. And it doesn't use a centralized server endpoint that can be caught by the Points of Interest instrument.
However, that time may come, or publishers may want to register the PBS endpoint in the privacy manifest proactively. For this case, the SDK should support both tracking and nontracking domains.
Objectives
Prebid.setCustomPrebidServer(url: String, trackingURL: String)
trackingURL
use it in when a user allowed the app to track. Otherwise - use theURL
for the bid requests.The text was updated successfully, but these errors were encountered: