有没有办法从这里获取html源代码?我正在向网站发送登录后请求,如果响应状态为302,我想检查源代码。我无法找到这样做。这就是我所拥有的:
http = httplib2.Http()
url = "http://example.com"
login = "test"
password = "test"
body = {'login': login, 'password' : password}
headers = {'Content-type' : 'application/x-www-form-urlencoded'}
response, content = http.request(url, 'POST', headers=headers, body=urllib.urlencode(body))
if response.status == '302':
break
“break”是我需要获取html源代码的地方。