1

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

4

2 回答 2

3

您可以使用在全局(所有 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>
于 2020-03-02T15:07:20.860 回答
0

在撰写本文时,Azure APIM 级别不支持此功能。由于我将 IdentityServer 用于 Oauth2 安全性,因此我通过编写一个 owin/katana 身份验证中间件来实现这一点。Anders Abel 有一篇很棒的文章

于 2015-06-05T10:06:22.643 回答