52
Views
1
Comments
Solved
The requested resource does not support http method 'POST'
Question

Hi all :)

I need some help to turn around a situation.

I'm creating an app that will receive some authentication from a main external portal, via token, JWT.

It sends the token with a POST request...

I created a reactive app to do this, I'm building the logic to decode the token, and then decrypt the data.

But when the main portal redirects to my app it gives this error.

"The requested resource does not support http method 'POST'"

Here is a print from my app... I appreciate any help ;) Thanks.




2019-01-07 16-04-16
Siya
 
MVP
Solution

You can't POST to a reactive web page. Instead, create a REST endpoint to receive the data, and then redirect to your page. Please refer this forum post on the implementation of the same.

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.