gpt4 book ai didi

python - 向请求模块添加 header

转载 作者:IT老高 更新时间:2023-10-28 21:33:05 28 4
gpt4 key购买 nike

之前我使用 httplib 模块在请求中添加 header 。现在我正在用 requests 模块尝试同样的事情。

这是我正在使用的 python 请求模块: http://pypi.python.org/pypi/requests

如何向 request.post()request.get() 添加 header 。假设我必须在标题中的每个请求中添加 foobar 键。

最佳答案

来自 http://docs.python-requests.org/en/latest/user/quickstart/

url = 'https://api.github.com/some/endpoint'
payload = {'some': 'data'}
headers = {'content-type': 'application/json'}

r = requests.post(url, data=json.dumps(payload), headers=headers)

您只需要使用标题创建一个字典(键:值对,其中键是标题的名称,值是对的值)并将该字典传递给标题上的参数.get.post 方法。

所以更具体到你的问题:

headers = {'foobar': 'raboof'}
requests.get('http://himom.com', headers=headers)

关于python - 向请求模块添加 header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8685790/

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