Embede IPythonNotebook into iframe

Embede IPythonNotebook into iframe

本文关键字:iframe into IPythonNotebook Embede      更新时间:2023-09-26

All.我正在尝试将IpythonNotebook嵌入到我的页面中。我想通过iFrame像wakari家伙(https://wakari.io/)一样做到这一点。但默认情况下,禁止构图Ipython NB。什么时候

<iframe id="NBframe" src="http://localhost:8888/notebooks/Untitled0.ipynb"></iframe>

我收到

Refused to display 'http://localhost:8888/notebooks/Untitled0.ipynb' in a frame because it set 'X-Frame-Options' to 'SAMEORIGIN'.

如何构建此页面?可能是 Ipython 中某个地方的某个配置?谢谢!

编辑

需要将其添加到ipython_notebook_config

c.NotebookApp.webapp_settings = {'headers': {'X-Frame-Options': 'ALLOW-FROM http://example.com/'}}

在 2.x 上,您需要设置 X-Frame 选项,在当前主节点和即将推出的 3.0 上使用 CSP。

在这两种情况下,请参阅此处:https://github.com/ipython/ipython/pull/7016