Reputation: 5540
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.
Upvotes: 2
Views: 4286
Reputation: 21
in HTTP trigger select the last section(add new parameter) there you can find authentication option and in the drop down can select basic auth type
Upvotes: 1
Reputation: 6793
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:
Upvotes: 1