I have an ASP.NET application with Forms Authentication, and is now implementing ApiControllers.
On my login page, I forward the user to the call he wanted after I signed him.
FormsAuthentication.RedirectFromLoginPage
And it works fine, IF it is a "GET" method, but if it is a "POST" method, then I get this error.
"The requested resource does not support http method 'GET'."
All methods work fine, BUT the first call must just be a "GET" method.
Is it not possible to "Redirect From Login Page" to a "POST" method?