I have developed an ASP.NET Web API application usingto run on .NetNET 4.8. It generates JWT tokens using OAuth.
From my ASP.NET MVC application, I invoke above API endpoints to get access token.
Now, I have developed another Web API application inon .NetNET 4.8 which needs authentication handled by the first Web apiAPI itself without writing entire oauthOAuth code.
That is from my mvcASP.NET MVC application I call second Web apiAPI and this second Web apiAPI should call first Web apiAPI to get accesaccess token and send to my ASP.NET MVC application.
Can someone help me on how to achieve this?