1
방금 azure 활성 디렉토리를 사용하도록 함수 앱을 구성했습니다. 그 후 HttpTrigger 속성에서 enum을 변경하여 함수 수준 인증을 비활성화하려고했습니다.AuthorizationLevel.User 란 무엇이며 올바르게 사용하는 방법은 무엇입니까?
내가 내 기능을 배치 한 후 난 단지 얻을
토큰이 유효한 인증을 포함하는 요청에 대한 액세스를 허용 : 다음과 같이 설명되어 있습니다 "사용자"AuthorizationLevel로 전환 할 수있는 가능성이 있음을 발견 401 unauthorized requests, 그래서 다시 익명 인증 수준으로 전환했습니다.
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
}
내 질문은 "사용자"권한 부여 수준을 올바르게 사용하는 방법입니다. 그리고 하늘빛 활성 디렉토리를 사용할 수 있습니까?
동일한 문제가 발생했습니다. 아직 지원되지 않습니까? –