I'm trying to make a teams tab app with ASP.NET and set up SSO by following this tutorial, and it worked.
https://learn.microsoft.com/en-us/microsoftteams/platform/tabs/how-to/authentication/auth-aad-sso
Now I have an authentication token, so that I can retrieve some user info from it, that's good.
What I want to know is, how do I make a secure web API call to save some data, like an edited schedule item or such, with this token? Is that ok(, or right approach) to post this token to a web API and decode it on a server side then check content of the token, like Issuer or Audience property to make sure it's a valid web access?