Logic App - Configure to follow a 308 PermRedirect - Stack Overflow

admin2025-04-25  3

As default Logic Apps do not follow a 308 Perm redirect.

Does anyone know how to configure a logic app to do this.

Postman follows the request Curl will follow it if you specify -l Dotnet will follow it as default

As default Logic Apps do not follow a 308 Perm redirect.

Does anyone know how to configure a logic app to do this.

Postman follows the request Curl will follow it if you specify -l Dotnet will follow it as default

Share Improve this question asked Jan 16 at 11:57 whatisthejavawhatisthejava 5034 silver badges16 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

The redirect won't happen automatically. You need to check the status code, and if it equals 308, then send a new request to the URL from the Location header.

For example:

Details of the Condition action: Bear in mind that it runs only if the HTTP action fails, not when it succeeds (e.g., with the OK or Accepted HTTP code).

Details of the second HTTP action:

Result - success:

转载请注明原文地址:http://anycun.com/QandA/1745533612a90870.html