-
Notifications
You must be signed in to change notification settings - Fork 230
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
Clarification on Topics API *principles* is needed #76
Comments
Topics is a piece of ads-related infrastructure that we expect to provide in browsers. Your question is more about how topics then gets used — that is, it's a question for the product development team of whatever ad tech provider you work with. We've seen many different ideas for how to use Topics, so both "it is a new targeting tool" or "it is an engine powering existing targeting tools" seem possible!
When a person visits a publisher web site, the ad request created by the code on the publisher page may include the Topics API output for that person, along with any other information the publisher's ad providers use to pick ads. In today's world, that ad request probably includes a third-party cookie, which the ad tech provider uses to look up some behavior profile that might include the attribute "Maybe interested in Cars". In a world without third-party cookies but with the Topics API, the information "Maybe interested in Cars" can still be used for ad targeting, even though the user profile cannot be built.
Any type of site can use the Topics API. But note that advertisers are often also websites! I think it is most likely to be called by ad tech parties embedded on both advertiser and publisher web pages.
There are no conditions on whether a party can call the API. But see this description of the filtering of returned topics: a website that never observes the same user in any other context will only get information based on the user's visits to that same website.
That's correct: topics are calculated for each epoch, currently once per week, and so the current visit will not have any effect on the Topics API's return values until after the next re-calculation. |
Thank you for this clarification Michael, may I ask to comment the last few points that are left please?
So any website acting as a Publisher and participating in Topics (i.e. having Topics code integrated in their pages) can call API for every visitor of that website independently from API calls of Advertisers using this website to place their ads, right? The browser returns user topics in reply to Advertisers' API requests to their part of ad ecosystem, while Publisher gets his own list of topics (which will differ from that of Advertisers' due to filtering of returned topics that you mentioned). Did I understand this mechanism right?
Yes, that's another point that is still a bit in a gray area for me. Let's assume on Epoch1 user browsed Website1 which has 2 topics - "Vacation" and "Car rental". If on Epoch2 this same user browses Website2 which has "Car rental" topic, that Website2 will get the "Vacation" topic in return to their API query too, as it already "accompanied" the "Car rental" topic on Website1 during Epoch1. I hope I understood this part of the logic correctly. However, what if on Epoch2 the user browses Website3 instead of Website2 and that Website3 has an "Aircrafts" topic: shall topics from Website1 ("Vacation", "Car rental") stay unavailable to Website3 even though the next epoch started, because there was no "overlap" with "Aircrafts" topic in the past? In other words, API callers will only be able to see those topics, with which at least 1 of already visible topics will overlap, right? I've heard that the iframe which runs Topics code will need to provide a token that matches its origin. What is understood under "origin" here - name of the domain the iframe is allowed to be used on, name of the company the iframe belongs to, etc.? Browser ID (that is more of a Trust Tokens API topic, but still) - how is it formed, can it be reset by a user (like Advertising ID)? Thank you! |
Any party on the site can call the Topics API. The list of topics returned gets filtered based on what origin the call was made in, though. If the API is called in the top-level publisher page, then some topics might be filtered. If the API is called from a cross-domain iframe on the same site, then different topics might be filtered. No matter who calls the API, though, there are only a total of three topics that might show up for this particular user on this site (until they get updated for a new epoch).
Check out the explanation of the visibility rules in our developer documentation:
RIght now Topics is an Origin Trial, and so the iframe where the Topics API will be called needs to include an Origin Trial token to activate the experimental feature. More documentation is linked from here:
Sorry, I'm not familiar with "Browser ID", so I don't know where to direct you for this question. |
Thank you so much for the explanation and the links - appreciate your help! |
Hi all,
can you please help me to clarify several key principles of Topics API?
Thank you!
The text was updated successfully, but these errors were encountered: