gpt4 book ai didi

python - 如何在 HTTP 请求中发送带有 urllib2 的自定义 header ?

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

我想在使用 urllib2.urlopen(..) 时在我的请求中发送一个自定义的“Accept” header 。我该怎么做?

最佳答案

不完全是。创建 Request 对象实际上并不发送请求,并且 Request 对象没有 Read() 方法。 (另外:read() 是小写的。)您需要做的就是将 Request 作为第一个参数传递给 urlopen() 并且会给你你的回应。

import urllib2
request = urllib2.Request("http://www.google.com", headers={"Accept" : "text/html"})
contents = urllib2.urlopen(request).read()

关于python - 如何在 HTTP 请求中发送带有 urllib2 的自定义 header ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/385262/

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