Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Update Private State Tokens #7726

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions site/en/docs/privacy-sandbox/private-state-tokens/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,11 @@ For more detail about the JavaScript calls in this example, see [Sample API usag

Chrome DevTools turns on inspection from the Network and Application tabs. Read more about this [DevTools integration](/blog/new-in-devtools-89/#trust-token) and about [Private State Tokens](/docs/privacy-sandbox/private-state-tokens/).

## How do publishers handle tokens from multiple trusted issuers?
## How do websites handle tokens from multiple trusted issuers?

The publisher can check a user's browser for valid tokens with `document.hasTrustToken()` for one issuer at a time. If this returns `true` and a token is available, the publisher can redeem the token and stop looking for other tokens.
The site can check a user's browser for valid tokens with `document.hasTrustToken()` for one issuer at a time. If this returns `true` and a token is available, the site can redeem the token and stop looking for other tokens.

The publisher must decide which token issuers to check and in what order.
The website must decide which token issuers to check and in what order.

---

Expand Down