Discuss Scratch

Jiesena
Scratcher
55 posts

Can you embed a scratch project editor

Just asking
LittleNarShark
Scratcher
100+ posts

Can you embed a scratch project editor

Jiesena wrote:

Just asking
I don't believe you can do it with an editor, but with the individual projects? Yes.
awesome-llama
Scratcher
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:
<!DOCTYPE html>
<html>
   <body
      <h1>Test embed:</h1>
      <iframe src="https://example.com" width="1400" height="600" scrolling="no"></iframe>
   </body>
</html>
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.)

Last edited by awesome-llama (Nov. 21, 2020 05:55:14)

Powered by DjangoBB