我如何

发布于 2024-11-25 01:48:06 字数 310 浏览 1 评论 0原文

我知道 Gmail 可能会采取一些安全措施来防止这种情况发生,但我确实需要将 Gmail 放入一个元素中。

以下两种方法均无效:

<object type='text/html' data='http://mail.google.com/'></object>

<iframe src='http://mail.google.com/' frameborder=0 style='width:322px; height:480px;'></iframe>

还有其他方法吗?

I know that Gmail might put some security measures in place to prevent this, but I really need to put Gmail inside an element.

The two following methods don't work:

<object type='text/html' data='http://mail.google.com/'></object>

<iframe src='http://mail.google.com/' frameborder=0 style='width:322px; height:480px;'></iframe>

Are there any other ways?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

可遇━不可求 2024-12-02 01:48:06

你不能。 GMail 与 Google 的大多数其他网络服务一样,设置了 HTTP 标头:

X-Frame-Options: SAMEORIGIN

这不允许其网站被除 GMail 本身之外的任何网站所限制。

You cannot. GMail, like most of Google's other web services, sets the HTTP header:

X-Frame-Options: SAMEORIGIN

which disallows their site from being framed by any site other than GMail itself.

柒七 2024-12-02 01:48:06

你最好使用 Google API。 http://code.google.com/appengine/docs/python/mail/

虽然这不是您问题的解决方案,但我相信这是一个合适的选择。

You would be better off using Google API. http://code.google.com/appengine/docs/python/mail/

Although not a solution to your question I believe this is an appropriate alternative.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文