我如何
我知道 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你不能。 GMail 与 Google 的大多数其他网络服务一样,设置了 HTTP 标头:
这不允许其网站被除 GMail 本身之外的任何网站所限制。
You cannot. GMail, like most of Google's other web services, sets the HTTP header:
which disallows their site from being framed by any site other than GMail itself.
你最好使用 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.