I'm building a web api app which will ping a remote server with form data and the response will return two cookies which I will need to authenticate all future Get and Post methods. I'm an apprentice so I want to do this the best way possible but I don't know where to start.
Asked
Active
Viewed 86 times
1 Answers
0
You can use JWT (JSON Web Token) https://jwt.io/
Send Token to user After login And then use that same Token For all the future Calls
Firstly Understand the Concept of JWT From this link. JWT authentication concept
Example Link
Hitesh Anshani
- 1,499
- 9
- 19