Azure Logic App Timeout When Calling External API with Authentication
Hey everyone, I'm running into an issue that's driving me crazy. I'm working on a project and hit a roadblock. I'm working with a timeout scenario with my Azure Logic App when it tries to call an external API that requires OAuth 2.0 authentication. The Logic App runs fine until it reaches the HTTP action to send a request, at which point it hangs for a long time and eventually fails with a timeout behavior: `The operation has timed out.` I've set up the HTTP action with the necessary headers and authentication details, but it seems like the request is not completing. My configuration looks like this: ```json { "method": "GET", "uri": "https://api.example.com/v1/resource", "headers": { "Authorization": "Bearer {{token}}", "Content-Type": "application/json" } } ``` I've generated the token successfully and confirmed that it works when I test the API using Postman with the same headers. I've tried increasing the timeout settings in the Logic App's settings, but it doesn't seem to help. Also, I added a retry policy to the HTTP action, but the same timeout behavior still occurs. Is there something I'm missing in the Logic App configuration or any way to debug this scenario further? Any insights would be highly appreciated! This is part of a larger API I'm building. I'd really appreciate any guidance on this.