plugins/rst: Set referrerpolicy for embedded YouTube#54
Merged
SmithChart merged 1 commit intopengutronix:masterfrom Nov 21, 2025
Merged
plugins/rst: Set referrerpolicy for embedded YouTube#54SmithChart merged 1 commit intopengutronix:masterfrom
SmithChart merged 1 commit intopengutronix:masterfrom
Conversation
YouTube seems to have tightened their policy and now requires us to send a referrer header when embedding YouTube inside an iframe: > API Clients that use the YouTube embedded player (including the YouTube > IFrame Player API) must provide identification through the HTTP Referer > request header. In some environments, the browser will automatically set > HTTP Referer, and API Clients need only ensure they are not setting the > Referrer-Policy in a way that suppresses the Referer value. > YouTube recommends using strict-origin-when-cross-origin Referrer-Policy, > which is already the default in many browsers. https://developers.google.com/youtube/terms/required-minimum-functionality#embedded-player-api-client-identity So let's set the referrer policy on the iframe accordingly. Signed-off-by: Chris Fiege <cfi@pengutronix.de>
Bastian-Krause
approved these changes
Nov 21, 2025
Member
Bastian-Krause
left a comment
There was a problem hiding this comment.
Sounds good to me. I assume you've tested this, so ack.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
YouTube seems to have tightened their policy and now requires us to send a referrer header when embedding YouTube inside an iframe:
https://developers.google.com/youtube/terms/required-minimum-functionality#embedded-player-api-client-identity
So let's set the referrer policy on the iframe accordingly.
To test this locally with the live-server one can add this header to the template to simulate a web-server sending a
no-referrerpolicy:<meta name="referrer" content="no-referrer">.