- 教程请求
- 请求 - 主页
- 请求 - 概述
- 请求 - 环境设置
- 请求 - Http 请求如何工作?
- 请求 - 使用请求
- 处理 HTTP 请求的响应
- 请求 - HTTP 请求标头
- 请求 - 处理 GET 请求
- 处理 POST、PUT、PATCH 和 DELETE 请求
- 请求 - 文件上传
- 请求 - 使用 Cookie
- 请求 - 处理错误
- 请求 - 处理超时
- 请求 - 处理重定向
- 请求 - 处理历史记录
- 请求 - 处理会话
- 请求 - SSL 认证
- 请求 - 身份验证
- 请求 - 事件钩子
- 请求 - 代理
- 请求 - 使用请求进行 Web 抓取
- 请求有用资源
- 请求 - 快速指南
- 请求 - 有用资源
- 请求 - 讨论
请求 - 处理重定向
本章将探讨 Request 库如何处理 url 重定向案例。
示例
import requests getdata = requests.get('http://google.com/') print(getdata.status_code) print(getdata.history)
url:http://google.com将使用状态代码 301(永久移动)重定向到https://www.google.com/。重定向将保存到历史记录中。
输出
在执行以上代码后,我们将得到以下结果 -
E:\prequests>python makeRequest.py 200 [<Response [301]>]
你可以使用 allow_redirects = False 停止 URL 的重定向。这可以在 GET、POST、OPTIONS、PUT、DELETE、PATCH 方法中使用。
示例
以下是相同主题的一个示例。
import requests getdata = requests.get('http://google.com/', allow_redirects=False) print(getdata.status_code) print(getdata.history) print(getdata.text)
如果你检查输出,将不会允许重定向并且将得到状态代码 301。
输出
E:\prequests>python makeRequest.py 301 [] <HTML><HEAD><meta http-equiv="content-type" content="text/html;charset=utf-8"> <TITLE>301 Moved</TITLE></HEAD><BODY> <H1>301 Moved</H1> The document has moved <A HREF="http://www.google.com/">here</A>. </BODY></HTML>
广告