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.
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.