I am quiet a newbie to Azure. This is first time using it. I have a simple web api published to Azure App Service. I want to enable the OAuth authentication on that api. Here is the steps I have taken:
- Published .Net Web API to App Service which can access successfully from Postman
- From the App Registration, registered an app (e.g. App1)
- Created a secret for App1 and Finished Expose the API with scopes
- Added API Permissions
- Then in the App Service (web api), setup Authentication with OpenID Connect provider point to App1
From the postman getting token successful. When I tried calling API from Postman with received Token, I am getting error message "You do not have permission to view this directory or page."
Is that the steps I have taken were wrong> or missed something?