摘要: python3 获取request 302跳转后最终的URL 代码: import requests resp = requests.get(rtsp_url, timeout=(3, 7)) if len(resp.history) > 0: location_url = resp.history 阅读全文
posted @ 2023-01-23 13:38 kliziM 阅读(845) 评论(0) 推荐(0)