gpt4 book ai didi

azure - Azure API 管理中的重定向策略

转载 作者:行者123 更新时间:2023-12-02 07:50:34 24 4
gpt4 key购买 nike

Azure API 管理 (Azure APIM) 是否提供任何重定向 URL 的方法,以便复制 Apigee RedirectToLoginPage功能

最佳答案

您可以使用在全局(所有 API)范围内设置的策略来实现此目的。

<choose>
<when condition="@(!context.Request.OriginalUrl.Host.Contains("redirect.com"))">
<return-response>
<set-status code="303" reason="See Other" />
<set-header name="Location" exists-action="override">
<value>@("https://redirect.com/" + context.Request.OriginalUrl.Path + context.Request.OriginalUrl.QueryString)</value>
</set-header>
</return-response>
</when>
</choose>

关于azure - Azure API 管理中的重定向策略,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30509000/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com