【发布时间】:2017-11-15 02:36:54
【问题描述】:
我想使用 R 和 Azure 存储的 Put Blob API 将文件放入我的 Blob 存储帐户,但它无法验证我的请求。不幸的是,我找不到 R 的任何文档或示例代码。 Put Blob API 的一般文档: https://docs.microsoft.com/en-us/rest/api/storageservices/put-blob
这是我尝试使用的代码:
library(httr)
account <- "myAccount"
container <- "myContainer"
filename <- "test.txt"
key <- "primaryKey"
object <- "Hello World"
url <- paste0("https://", account, ".blob.core.windows.net/", container, "/", filename)
requestdate <- format(Sys.time(),"%a, %d %b %Y %H:%M:%S %Z", tz="GMT")
content_length <- nchar(object, type = "bytes")
signature_string <- paste0("PUT", "\n", "\n", "\n",
content_length, "\n",
"\n",
"x-ms-date:",requestdate, "\n",
"x-ms-version:2015-02-21", "\n",
"x-ms-blob-type:BlockBlob", "\n",
"Content-Type:text/plain", "\n",
"\n",
"x-ms-blob-content-dis filename=", filename, "\n",
"\n",
"/",account, "/",container,"/", filename)
headerstuff <- add_headers(Authorization=paste0("SharedKey ",account,":",
RCurl::base64(digest::hmac(key =
RCurl::base64Decode(key, mode = "raw"),
object = enc2utf8(signature_string),
algo = "sha256", raw = TRUE))),
`Content-Length` = content_length,
`x-ms-date`= requestdate,
`x-ms-version`= "2015-02-21",
`x-ms-blob-type`="BlockBlob",
`Content-Type`="text/plain")
content(PUT(url, config = headerstuff, body = object, verbose()), as = "text")`
请求它发送:
-> PUT /myContainer/test.txt HTTP/1.1
-> Host: myAccount.blob.core.windows.net
-> User-Agent: libcurl/7.49.1 r-curl/2.3 httr/1.2.1
-> Accept-Encoding: gzip, deflate
-> Accept: application/json, text/xml, application/xml, */*
-> Authorization: SharedKey myAccount:hashedSignatureString
-> Content-Length: 11
-> x-ms-date: Tue, 13 Jun 2017 08:50:38 GMT
-> x-ms-version: 2015-02-21
-> x-ms-blob-type: BlockBlob
-> Content-Type: text/plain
->
>> Hello World
回应:
<- HTTP/1.1 403 Server failed to authenticate the request. Make sure the
value of Authorization header is formed correctly including the signature.
<- Content-Length: 693
<- Content-Type: application/xml
<- Server: Microsoft-HTTPAPI/2.0
<- x-ms-request-id: efc2c8de-0001-00a9-3d21-e41b06000000
<- Date: Tue, 13 Jun 2017 08:48:56 GMT
我对 List Blobs API 进行了同样的尝试(对标头的格式进行了一些细微的更改)并且效果很好,但我无法使其与 Put Blob 一起使用。 从这里列出 Blob 解决方案:https://stackoverflow.com/a/29286040/8085694
您能否提供一些用于在 Put Blob 创建身份验证标头的示例 R 代码或帮助我解决此问题?
另外,如果我更进一步,是否有可能以某种方式将 R 对象作为 blob 上传到存储中?
提前致谢,
加博尔
【问题讨论】:
-
请确保您的
signature_string完全按照此处描述的规范构建:docs.microsoft.com/en-us/rest/api/storageservices/…。稍有偏差就会导致 403 错误。 -
谢谢,我通过检查文档中的每一个小细节来设法完成这项工作!
标签: r azure azure-blob-storage