gpt4 book ai didi

azure - 什么是 AuthorizationLevel.User 以及如何正确使用它?

转载 作者:行者123 更新时间:2023-12-01 15:53:26 26 4
gpt4 key购买 nike

我刚刚将函数应用配置为使用 azure Active Directory。之后,我想通过更改 HttpTrigger 属性的枚举来停用功能级身份验证。然后我发现可以切换到“用户”授权级别,其描述为:

Allow access to requests that include a valid authentication token

部署函数后,我只收到 401 个未经授权的请求,因此我切换回匿名授权级别。

public enum AuthorizationLevel
{
//
// Summary:
// Allow access to anonymous requests.
Anonymous = 0,
//
// Summary:
// Allow access to requests that include a valid authentication token
User = 1,
//
// Summary:
// Allow access to requests that include a function key
Function = 2,
//
// Summary:
// Allows access to requests that include a system key
System = 3,
//
// Summary:
// Allow access to requests that include the master key
Admin = 4
}

所以我的问题是,如何正确使用“用户”授权级别?我可以在启用 Azure Active Directory 的情况下使用它吗?

最佳答案

目前不支持

用户。它最终将用于支持应用服务身份验证,但目前还行不通。

关于azure - 什么是 AuthorizationLevel.User 以及如何正确使用它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46300913/

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