gpt4 book ai didi

python - 使用 python 中的请求模块连接到 Azure-Datalakes-gen2 时遇到问题

转载 作者:太空宇宙 更新时间:2023-11-03 20:53:42 25 4
gpt4 key购买 nike

我目前正在尝试使用 python 连接到 azure datalakes-gen2,以从存储在其中的 json 文件中获取信息。听说 python 的 azure-datalakes 模块不适用于第 2 代(并且我自己也遇到了麻烦),我继续通过 rest-api 和 python 中找到的 requests 包进行连接。然而,阅读 Microsoft 留下的引用资料以及所需的身份验证 header ,让我更加困惑该怎么做。

虽然我对Python有一个大致的了解,但对于更高级的项目我仍然是一个业余爱好者,并且总是需要查找东西,但是这是我第一次提出问题寻求帮助而不是搜索直到找到答案(所以请耐心等待)。

我发现 Michal Pawlikowski 提供了一个有用的链接,解释了如何通过 powershell 进行连接,这有助于解释许多 Unresolved 问题,但仍然存在两个问题,首先是我不确定是否正确编码身份验证 header 。具体来说,“通过使用 HMAC-SHA256 算法对 UTF-8 编码的签名字符串对此字符串进行编码”,其次,这只会列出在目录中找到的文件,而不是文件中包含的信息。

这是我尝试过的


date = "Wed, 15 May 2019 14:28:01 GMT"

string_to_sign = 'GET\n\n\n\n\n\n\n\n\n\n\n\nx-ms-date:'+date+'\nx-ms-version:2018-11-09\n/'+STORAGE_ACCOUNT_NAME+'/'+FILE_SYSTEM_NAME+'\nrecursive:true\nresource:fileststem'

signature = #Encoded string_to_sign + key, am unsure how to approach

auth_header = "SharedKey "+STORAGE_ACCOUNT_NAME+":"+signature

headers = {"Authorization" : auth_header, "x-ms-version" : "2018-11-09", "x-ms-date" : date}


req = requests.get("https://"+STORAGE_ACCOUNT_NAME+".dfs.core.windows.net/" + FILE_SYSTEM_NAME + "?recursive=true&resource=filesystem", headers=headers)

我希望 req.text 包含在 json 文件中找到的信息,但是我总是会收到 403 错误,指出要确保我的 header 格式正确。

最佳答案

如果你想读取文件内容,你应该使用Read api .

下面的代码在我这边工作:

import requests
import datetime
import hmac
import hashlib
import base64

storage_account_name = 'storage_account_name'
storage_account_key = 'storage_account_key'
api_version = '2018-11-09'
request_time = datetime.datetime.utcnow().strftime('%a, %d %b %Y %H:%M:%S GMT')

#the file path on adls gen2
FILE_SYSTEM_NAME='dd1/11.txt'

string_params = {
'verb': 'GET',
'Content-Encoding': '',
'Content-Language': '',
'Content-Length': '',
'Content-MD5': '',
'Content-Type': '',
'Date': '',
'If-Modified-Since': '',
'If-Match': '',
'If-None-Match': '',
'If-Unmodified-Since': '',
'Range': '',
'CanonicalizedHeaders': 'x-ms-date:' + request_time + '\nx-ms-version:' + api_version,
'CanonicalizedResource': '/' + storage_account_name+'/'+FILE_SYSTEM_NAME
}

string_to_sign = (string_params['verb'] + '\n'
+ string_params['Content-Encoding'] + '\n'
+ string_params['Content-Language'] + '\n'
+ string_params['Content-Length'] + '\n'
+ string_params['Content-MD5'] + '\n'
+ string_params['Content-Type'] + '\n'
+ string_params['Date'] + '\n'
+ string_params['If-Modified-Since'] + '\n'
+ string_params['If-Match'] + '\n'
+ string_params['If-None-Match'] + '\n'
+ string_params['If-Unmodified-Since'] + '\n'
+ string_params['Range'] + '\n'
+ string_params['CanonicalizedHeaders']+'\n'
+ string_params['CanonicalizedResource'])

signed_string = base64.b64encode(hmac.new(base64.b64decode(storage_account_key), msg=string_to_sign.encode('utf-8'), digestmod=hashlib.sha256).digest()).decode()
headers = {
'x-ms-date' : request_time,
'x-ms-version' : api_version,
'Authorization' : ('SharedKey ' + storage_account_name + ':' + signed_string)
}
url = ('https://' + storage_account_name + '.dfs.core.windows.net/'+FILE_SYSTEM_NAME)
r = requests.get(url, headers = headers)

#print out the file content
print(r.text)

测试结果:

enter image description here

关于python - 使用 python 中的请求模块连接到 Azure-Datalakes-gen2 时遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56153298/

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