Python爬虫如何获取重定向之后的url

这个是用抖音做测试的,使用response的url属性,就可以获取重定向的地址

import requests

url='https://v.douyin.com/J2EarSN/'
resp=requests.get(url).url
print(resp)

或者是使用requests的get方法,设置allow_redirects为True,可以获取到重定向之后的相响应内容

import requests

url='https://v.douyin.com/J2EarSN/'
resp=requests.get(url,allow_redirects=True)
print(resp)

你可能感兴趣的:(Python爬虫,python,爬虫,url)