我已经检查了论坛上可用的其他解决方案,并且 当从 azure APIM 调用返回空响应正文和状态代码 200 时,这个也是 REST API 服务
我正在尝试调用返回状态代码(200,401 和 404)的身份验证服务,如果它返回 200,那么我希望将我的请求转发到后端,否则仅将状态代码返回给客户端。
这是我在我的政策中添加的
<policies>
<inbound>
<base />
<check-header name="username" failed-check-httpcode="401" failed-check-error-message="unauthorised" ignore-case="true" />
<cors>
<allowed-origins>
<origin>*</origin>
</allowed-origins>
<allowed-methods>
<method>GET</method>
<method>POST</method>
</allowed-methods>
</cors>
<send-request mode="new" response-variable-name="receivedResp" timeout="20" ignore-error="true">
<set-url>https://authenticate1.azurewebsites.net/auth</set-url>
<set-method>GET</set-method>
<set-header name="username" exists-action="override">
<value>@(context.Request.Headers.GetValueOrDefault("username",""))</value>
</set-header>
<set-body />
</send-request>
<return-response response-variable-name="receivedResp" />
</inbound>
<backend>
<base />
</backend>
<outbound>
<base />
</outbound>
<on-error>
<base />
</on-error>
现在的问题是返回在所有情况下都返回收到的响应,当我添加条件策略时,我仍然无法返回从后端收到的响应。
任何人都可以告诉如何检查状态代码并返回从服务器收到的响应,仅在 200 的情况下?