urllib.error.HTTPError: HTTP Error 403: Forbidden
Posted zhenzi0322
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了urllib.error.HTTPError: HTTP Error 403: Forbidden相关的知识,希望对你有一定的参考价值。
# 简单例子
import urllib.request
request = urllib.request.Request(‘https://python.org‘)
response = urllib.request.urlopen(request)
# print(response.read().decode(‘utf-8‘))
# 增加header
from urllib import request, parse
# url = ‘http://httpbin.org/post‘
url = ‘https://upload.wikimedia.org/wikipedia/commons/e/e0/Caravaggio_-_Cena_in_Emmaus.jpg‘
headers = {
‘User-Agent‘: ‘Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0‘
}
# 构造POST表格
dict = {
‘name‘: ‘Germey‘
}
data = bytes(parse.urlencode(dict), encoding=‘utf8‘)
req = request.Request(url=url, data=data, headers=headers, method=‘GET‘)
response = request.urlopen(req)
print(response)
以上是关于urllib.error.HTTPError: HTTP Error 403: Forbidden的主要内容,如果未能解决你的问题,请参考以下文章
urllib.error.HTTPError:HTTP 错误 404:未找到 - python
Pytube:urllib.error.HTTPError:HTTP 错误 410:消失了
urllib.error.HTTPError: HTTP Error 403: Forbidden
urllib.error.HTTPError: HTTP Error 403: Forbidden