谷歌群组服务返回404错误



我试图在我的网站内使用谷歌群组服务,尽管将此代码嵌入主页,但它返回了404错误!是因为我在使用localhost吗?

<iframe id="forum_embed"
  src="javascript:void(0)"
  scrolling="no"
  frameborder="0"
  width="900"
  height="700">
</iframe>
<script type="text/javascript">
  document.getElementById('forum_embed').src =
     'https://groups.google.com/forum/embed/?place=forum/*********'
     + '&showsearch=true&showpopout=true&showtabs=false'
     + '&parenturl=' + encodeURIComponent(window.location.href);
</script>

是的,404问题是因为您从localhost运行。我在Mac OS X上使用内置的Apache服务器,遇到了完全相同的问题。一旦我将HTML文件上传到我的托管网站,谷歌群组论坛就会正常显示。

相关内容

  • 没有找到相关文章

最新更新