在我的Azure API管理策略中,我正在检查一些标头,并根据发现的内容执行某些操作。
当没有条件匹配时(例如,在otherwise
块中),如何引发错误
<policies>
<inbound>
<choose>
<when condition="">
</when>
<when condition="">
</when>
<otherwise>
</otherwise>
</choose>
<base/>
</inbound>
<backend>
<base/>
</backend>
<outbound>
<base/>
</outbound>
<on-error>
<base/>
</on-error>
</policies>
由于我正在检查标头中的组,因此我可能想返回401。