Thank you for providing the details and the screenshot. I understand that you've already:
- Enabled public access and removed all authentication from the Logic App.
- Tried using the HTTP action in Power Automate without authentication, as shown in your setup.
Since the issue persists and the Logic App works fine in the browser (likely due to certificate authentication being used automatically there), the following steps might help further isolate or resolve the issue:
- Ensure the signature (
sig
) query parameter in your Logic App URL is correctly included in the Power Automate HTTP action. This is critical for unauthenticated calls. - As a troubleshooting step, try calling the Logic App from tools like Postman or cURL using the same URL and settings configured in Power Automate. If this works, the issue might lie with how Power Automate is making the request.
- Look at the Logic App runtime logs in the Azure Portal to confirm whether requests from Power Automate are reaching the Logic App and, if so, what’s causing the 403 responses.
If these steps don’t resolve the issue, you consider using intermediary like Azure API Management (APIM) to manage authentication and simplify the integration.