Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 8 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
作为参考,我也遇到了同样的 405 错误。这是因为我的 Facebook 应用程序指向 .html 文件进行测试。
我重命名为 .aspx,我的服务器停止将该错误发送回 Facebook
For reference I had this same 405 error. This was because my Facebook app was pointing to a .html file for testing.
I renamed to .aspx and my server stopped sending that error back to Facebook
在应用程序设置的“高级”选项卡下禁用
Canvas POST
。Disable
POST for Canvas
on the application settings, under the "advanced" tab.当使用 nginx 服务器时,这可能是由于将 Web 的根目录指向 .html 文件引起的...将其更改为 .php,它将起作用。
这很可能是因为 nginx 不允许在静态网站上使用 POST 方法。
When using nginx server, this can be caused by pointing root of the web to .html file... Change it e.g to .php and it will work.
This is probabl because nginx does not allow POST method on static websites.