我尝试在我的网站中使用Google群组服务,虽然将此代码嵌入主页,但它返回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>
答案 0 :(得分:2)
是的,404问题是因为您从localhost
开始运行。我在Mac OS X上使用内置的Apache服务器并遇到了完全相同的问题。将HTML文件上传到托管网站后,Google网上论坛正常显示。