0
votes

I have an Azure API Management with the following backend policy:

<backend>
    <forward-request timeout="10" follow-redirects="true" />
</backend>

When testing in Postman, I'm still receiving a 308 Permanent Redirect. I thought that follow-redirects followed a backend redirect response. Why is it getting passed back to the client?

1

1 Answers

0
votes

follow-redirects:Specifies whether redirects from the backend service are followed by the gateway or returned to the caller.

As the article said, when you follow-redirects as true, it will returned to the client.