Azure Redis缓存授权标头
我正在研究Azure Redis
缓存,并且我正在使用REST API
来创建缓存。我得到的回应是:Azure Redis缓存授权标头
HTTP/1.1 401 Unauthorized {
"error": {
"code": "AuthenticationFailed",
"message": "Authentication failed. The 'Authorization' header is missing."
}
}
我在文档中找不到任何Authorization header
。有人可以建议生成授权标题的过程吗?
回答:
基本上创建Azure Redis Cache
帐户操作是Azure Resource Manager (ARM)
操作。每个ARM操作都需要一个authorization
标头,该标头必须包含在请求中。由于您未在请求中包含此标头,因此您收到此错误。
有关如何验证您的ARM API请求的详细说明,请参阅Resource Manager REST APIs
。
以上是 Azure Redis缓存授权标头 的全部内容, 来源链接: utcz.com/qa/263401.html