1、重定向
1. (Redirect)就是經過各類方法將各類網絡請求從新定個方向轉到其它位置,從地址A跳轉到地址 B 了。
2.重定向狀態碼:
--301 redirect: 301 表明永久性轉移(Permanently Moved)
--302 redirect: 302 表明暫時性轉移(Temporarily Moved )
3.舉個簡單的場景案例,先登陸博客園打開個人博客首頁,進個人隨筆編輯界面,記住這個
地址:https://i.cnblogs.com/EditPosts.aspx?opt=1
4.退出博客園登陸,把剛纔個人隨筆這個地址輸入瀏覽器回車,抓包會看到這個請求狀態碼是 302,瀏覽器地址欄瞬間刷新跳到登陸首頁去了html
2、禁止重定向(allow_redirects )
1.用 get 方法請求:https://i.cnblogs.com/EditPosts.aspx?opt=1
2.打印狀態碼是 200,這是由於 requets 庫自動處理了重定向請求了,默認是allow_redirects=True 是啓動重定向瀏覽器
3.自動處理重定向地址後,咱們就獲取不到重定向後的 url 了,就沒法走下一步,這裏咱們能夠設置一個參數禁止重定向:allow_redirects=False
(allow_redirects=True 是啓動重定向),而後就能夠看到 status_code 是 302 了安全
3、獲取重定向後地址
1.在第一個請求後,服務器會下發一個新的請求連接,在 response 的 headers 裏,以下抓包:Location服務器
2.用腳本去獲取 Location 地址網絡
4、代碼參數url
import requests
#禁用安全請求警告
from requests.packages.urllib3.exceptions import InsecureRequestWarning
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)code
url = "https://i.cnblogs.com/EditPosts.aspx?opt=1"
headers = {
"User-Agent": "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36"
}
s = requests.Session()
#打開個人隨筆
r = s.get(url,headers=headers,verify=False,allow_redirects=False)
# print(r.content.decode("utf-8"))
#打印狀態碼,自動處理重定向請求
print(r.status_code)
#獲取重定向後的地址
print(r.headers["Location"])htm
原文出處:https://www.cnblogs.com/Teachertao/p/11146631.htmlblog