gpt4 book ai didi

python - 用于http header 构造的python字典中的变量

转载 作者:太空宇宙 更新时间:2023-11-04 03:16:00 26 4
gpt4 key购买 nike

python 的新手,但我正在尝试在用于构造 http header 的字典中使用变量

这是我的:

import requests

url = "https://sample.com"
auth = "sampleauthtoken"


headers = {
'authorization': "Bearer "<VARIABLE auth HERE>,
'cache-control': "no-cache"
}

response = requests.request("GET", url, headers=headers)

print(response.text)

我尝试了几种不同的组合,但都没有成功

最佳答案

如果我对你的理解正确,你只想使用 + 运算符连接字符串:

import requests

url = "https://sample.com"
auth = "sampleauthtoken"


headers = {
'authorization': "Bearer " + auth, # -> "Bearer sampleauthtoken"
'cache-control': "no-cache"
}

response = requests.request("GET", url, headers=headers)

print(response.text)

关于python - 用于http header 构造的python字典中的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36270320/

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