We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
GET https://connect.soundcloud.com/sdk/sdk-3.0.0.js
Serve a page containing this:
<!DOCTYPE html> <html> <head> <script src="https://connect.soundcloud.com/sdk/sdk-3.0.0.js"></script> </head> <body> </body> </html>
With this HTTP header:
Cross-Origin-Embedder-Policy: require-corp
The JavaScript sdk should load, and a window.SC object be present.
The SoundCloud SDK fails to load with this error in the console:
GET https://connect.soundcloud.com/sdk/sdk-3.0.0.js net::ERR_BLOCKED_BY_RESPONSE
And with this status in the network tab:
(blocked:NotSameOriginAfterDefaultedToSameOriginByCoep)
The sdk.js file needs to be served with this header in order to load in presence of the COEP header:
access-control-allow-origin: *
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Title: The JavaScript SDK needs to be served with access-control-allow-origin: *
Endpoint(s):
GET https://connect.soundcloud.com/sdk/sdk-3.0.0.js
Scope(s):
Steps to reproduce:
Serve a page containing this:
With this HTTP header:
Cross-Origin-Embedder-Policy: require-corp
Expected behaviour:
The JavaScript sdk should load, and a window.SC object be present.
Actual behaviour:
The SoundCloud SDK fails to load with this error in the console:
GET https://connect.soundcloud.com/sdk/sdk-3.0.0.js net::ERR_BLOCKED_BY_RESPONSE
And with this status in the network tab:
(blocked:NotSameOriginAfterDefaultedToSameOriginByCoep)
The sdk.js file needs to be served with this header in order to load in presence of the COEP header:
access-control-allow-origin: *
The text was updated successfully, but these errors were encountered: