Discuss Scratch
- Discussion Forums
- » Questions about Scratch
- » Can you embed a scratch project editor
- LittleNarShark
-
100+ posts
Can you embed a scratch project editor
I don't believe you can do it with an editor, but with the individual projects? Yes. Just asking
- awesome-llama
-
1000+ posts
Can you embed a scratch project editor
I decided I might as well see if I can do it. Turns out not.
HTML iframes are able to embed websites, however some can be set to not allow it.
I went and checked Scratch and can confirm that it is blocked:
X-Frame-Options
SAMEORIGIN
The SAMEORIGIN part means the page will only load from its original place (the actual website).
I found this website that makes it really easy to check: https://gf.dev/x-frame-options-test
—
I made up a really basic webpage using example.com below. This one works:
You can mess around with it if you want and see how iframes work. (Copy the code into a blank file with the extension html.)
HTML iframes are able to embed websites, however some can be set to not allow it.
I went and checked Scratch and can confirm that it is blocked:
X-Frame-Options
SAMEORIGIN
The SAMEORIGIN part means the page will only load from its original place (the actual website).
I found this website that makes it really easy to check: https://gf.dev/x-frame-options-test
—
I made up a really basic webpage using example.com below. This one works:
<!DOCTYPE html> <html> <body <h1>Test embed:</h1> <iframe src="https://example.com" width="1400" height="600" scrolling="no"></iframe> </body> </html>
Last edited by awesome-llama (Nov. 21, 2020 05:55:14)
- Discussion Forums
- » Questions about Scratch
-
» Can you embed a scratch project editor