Facebook requires all canvas applications to support HTTP POST in an iframe instead of GET. However, when I enable this feature, ASP.net complains that
The HTTP verb POST used to access path '/' is not allowed
For some reason, Facebook requires a path in which there is no extension (for example, it requires mydomain.com/random/instead mydomain.com/mypage.aspx).
How to enable POST for aspx pages and root page (default) on my web.config page so that I can create the application locally? I find the configuration in IIS simpler.
Thank.
source
share