gpt4 book ai didi

Azure API 管理 - 未强制执行订阅 key

转载 作者:行者123 更新时间:2023-12-03 03:36:39 25 4
gpt4 key购买 nike

我有一个通过 Azure APIM 管理的 Azure Function。我已经为它创建了一个订阅 key ,但是它没有被强制执行。我已经测试过在没有订阅 key 的情况下访问它,它仍然可以获得响应。知道如何限制它以便您必须传递订阅 key 才能获得响应吗?

这是我的有效订阅 key 的证明

enter image description here

这里可以证明我已启用“需要订阅”

enter image description here

最佳答案

Any idea on how I can restrict it so that you have to pass the subscription key in order to get a response?

如果请求不是使用不正确或丢失的订阅 key 进行的,

on-error 部分应从 policies 执行。

XML 中出错的示例代码:

<policies>  
<inbound> </inbound>
<backend> </backend>
<outbound> </outbound>
<on-error>
<!-- If there is an any error -->
</on-error>
</policies>

根据 Microsoft 文档,Predefined errors for built-in steps .

From the pre-defined error conditions that can occur during the evaluation of built-in processing steps.

检查授权上的以下任一选项。

  • SubscriptionKeyNotFound: Access denied due to missing subscription key. Make sure to include subscription key when makingrequests to API.
  • SubscriptionKeyInvalid: Access denied due to invalid subscription key. Make sure to provide a valid key for an activesubscription.

感谢@Vitaliy Kurokhtin,请参阅this page了解更多信息。

关于Azure API 管理 - 未强制执行订阅 key ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73097186/

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