import requests url = 'http://1234by.com' res = requests.get(url,headers={"Content-Type":"application/json"}) redit_list = res .history#可以看出获取的是一个地址序列 print(f'获取重定向的历史记录:{redit_list}') print(f'获取第一次重定向的headers头部信息:{redit_list[0].headers}') print(f'获取重定向最终的url:{redit_list[len(redit_list)-1].headers["location"]}')
标签:重定向,headers,Python,redit,list,url,requests From: https://www.cnblogs.com/ai594ai/p/16853349.html