so we have typical scenario, basically we have 2 azure app services
1st : API App Service - hosting asp.net core 2.1 web api c# project
2nd : Angular App Service - hosting stand alone angular app.
in 2nd :Stand alone angular app service is configured by this , a easy auth, where we don't need to write any angular authentication code, also we configured this
for that we created one azure add app - we provided API access to API App Service...
in angular app - we got token by calling /.auth/ me - and that token we're sending to API App Service.
on other hand,
API App Service also protected with separate azure ad app.
now question is :
#1 : how do we verify the token being sending ( by angular or any client ) to web API project is valid ?
Thanks a lots.