response = requests.get(someurl); if response.history: print "Request was redirected"; for resp in response.history: print resp.status_code, ...
確定! 回上一頁