Attribution Reporting API OT and feature policies #24
-
Hi, The Attribution Reporting API mentions feature policies both on source and destination (https://github.com/WICG/conversion-measurement-api/blob/main/event_attribution_reporting_clicks.md#publisher-side-controls-for-attribution-source-declaration). Are these feature policies active for the Origin Trial, i.e. access to AR API is restricted through these policies? Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @lbdvt, <iframe src="..." allow="attribution-reporting"></iframe>
This is in effect in the Origin Trial, but note that it isn't related to the Origin Trial per se; this is a generic mechanism to prevent arbitrary third-parties from registering sources without the publisher's knowledge (or triggering attributions). Also note: using the permissions policy ( Does this answer your question? |
Beta Was this translation helpful? Give feedback.
Hi @lbdvt,
Thanks for your question. In order to use Attribution Reporting in cross-origin iframes to declare a click (source-side) or trigger an attribution (destination side), you need to enable the feature via the
attribution-reporting
Permissions-Policy. (Permissions-Policy is the new name for Feature-Policy).This is in effect in the Origin Trial, but note that it isn't related to the Origin Trial per se; this is a generic mechanism to prevent arbitrary third-parties from registering sources without the publish…