Facebook Canvas 应用程序未加载我的 URL
我在 www.somedomain.com/facebook/index.html http://www.somedomain .com/facebook/index.html。我想通过应用程序提供该服务...因此通过画布,但是当我将画布网址指向此目录(www.somedomain.com/facebook/)时,我在应用程序页面上收到页面未找到错误。但是,点击 www.somedomain.com/facebook/ http://www.somedomain.com/facebook/ 确实在浏览器中提供index.html。关于这里发生的事情有任何线索吗?可能会补充...目前还没有 https 页面设置。这只是我想通过应用程序提供的静态 HTML 页面。
谢谢!
I got a page at www.somedomain.com/facebook/index.html http://www.somedomain.com/facebook/index.html. I'd like to serve that via the apps...so via the canvas but when I point the canvas url to this directory (www.somedomain.com/facebook/) I get a page not found error on the apps page. However, hitting www.somedomain.com/facebook/ http://www.somedomain.com/facebook/ does serve index.html in a browser. Any clues as to what's going on here? Might add...there is no https page setup as yet. This is just a static HTML page that I'd like to serve via apps.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了将您的页面加载到画布 iframe 中,Facebook 正在向 URL http 发出 HTTP POST 请求: //www.somedomain.com/facebook/index.html。
我的猜测是您的服务器仅提供使用 GET 请求的页面。
In order to load your page inside the canvas iframe, Facebook is issuing an HTTP POST request for the URL http://www.somedomain.com/facebook/index.html.
My guess is your server only serves pages requested using GET.