gpt4 book ai didi

r - R 中的 Azure PUT Blob 身份验证失败

转载 作者:行者123 更新时间:2023-12-02 08:05:44 25 4
gpt4 key购买 nike

我想使用 R 和 Azure 存储的 Put Blob API 将文件放入我的 Blob 存储帐户,但它无法验证我的请求。不幸的是,我找不到 R 的任何文档或示例代码。 Put Blob API 的一般文档: https://learn.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 进行了相同的尝试(对 header 的格式进行了一些细微的更改),效果很好,但我无法使其与 Put Blob 一起使用。从此处列出 Blob 解决方案:https://stackoverflow.com/a/29286040/8085694

您能否提供一些用于在 Put Blob 上创建身份验证 header 的示例 R 代码或帮助我解决此问题?

此外,如果我更进一步,是否可以以某种方式将 R 对象作为 blob 上传到存储?

提前致谢,

加博尔

最佳答案

我设法通过将“\n”字符和所有内容放在正确的位置来解决此问题。根据 Gaurav Mantri 的帮助,我使用了:
https://learn.microsoft.com/en-us/rest/api/storageservices/authentication-for-the-azure-storage-services

“signature_string”中的以下更改有效:

signature_string <- paste0("PUT", "\n",            # HTTP Verb
"\n", # Content-Encoding
"\n", # Content-Language
content_length, "\n", # Content-Length
"\n", # Content-MD5
"text/plain", "\n", # Content-Type
"\n", # Date
"\n", # If-Modified-Since
"\n", # If-Match
"\n", # If-None-Match
"\n", # If-Unmodified-Since
"\n", # Range
# Here comes the Canonicalized Headers
"x-ms-blob-type:BlockBlob","\n",
"x-ms-date:",requestdate,"\n",
"x-ms-version:2015-02-21","\n",
# Here comes the Canonicalized Resource
"/",account, "/",container,"/", filename)

关于r - R 中的 Azure PUT Blob 身份验证失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44519413/

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