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