Home > database >  How to add the basic authentication to the HTTP triggered Azure Logic App
How to add the basic authentication to the HTTP triggered Azure Logic App

Time:12-21

I have created an Azure Logic App with Http Trigger and then added the Service Bus – Send Message action.

Next, I’m calling the above logic app from third party system. There are no issues for calling the Http triggered logic app from third party system. But I want to add the Basic authentication to the Http triggered logic app.

Because whenever I’m calling the above logic app from third party system, I need to pass the Basic authentication details for security reason.

CodePudding user response:

in HTTP activity select the last section(add new parameter) there you can find authentication option and in the drop down can select basic auth type

CodePudding user response:

You could secure your Logic App using basic authentication by exposing it via Azure API Management.

Without Azure API Management, you have the following options:

  • Related