Reputation: 4389
I'm trying to connect to an Azure web app, and once I have checked that network is correctly configured (I'm able to connect to unsecured resources) I'm stuck with the "Active Directory Oauth" option in the HTTP connector (API web app inside Azure).
The response is an internal error:
Are the parameters correctly filled?
And also I have been able to connect with endpoint through Postman Authentication Oauth 2.0. ID Token ins unchecked in App Registration.
Upvotes: 0
Views: 694
Reputation: 1721
Have created logic app as shown below,
Get Bearer Token is a http action. Using this request getting bearer token. Authentication Type: Basic
User name : Client Id
Password : Client Secret
Added one more Http action with name, Get Data action is using access token from previous step to call api as shown below,
Able to call api using bearer token and getting data.
Upvotes: 1