我正在尝试使用requests
库向重定向网址发送http请求(在响应标头位置中)。使用Chrome检查时,我可以看到响应状态为302.
但是,在python中,requests
始终返回200状态。我添加了allow_redirects=False
,但状态仍然是200.
https://api.weibo.com/oauth2/authorize?redirect_uri=http%3A//oauth.weico.cc&response_type=code&client_id=211160679
moyan429@hotmail.com
112358
然后单击第一个按钮进行登录。
我的Python代码:
import requests
user_agent = 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.152 Safari/537.36'
session = requests.session()
session.headers['User-Agent'] = user_agent
session.headers['Host'] = 'api.weibo.com'
session.headers['Origin']='https://api.weibo.com'
session.headers['Referer'] ='https://api.weibo.com/oauth2/authorize?redirect_uri=http%3A//oauth.weico.cc&response_type=code&client_id=211160679'
session.headers['Connection']='keep-alive'
data = {
'client_id': api_key,
'redirect_uri': callback_url,
'userId':'moyan429@hotmail.com',
'passwd': '112358',
'switchLogin': '0',
'action': 'login',
'response_type': 'code',
'quick_auth': 'null'
}
resp = session.post(
url='https://api.weibo.com/oauth2/authorize',
data=data,
allow_redirects=False
)
code = resp.url[-32:]
print code
答案 0 :(得分:4)
您可能收到API错误消息。使用print resp.text
查看服务器告诉您的错误。
请注意,您始终可以检查resp.history
以查看是否存在重定向;如果有的话,你会找到一个响应对象列表。
不要设置Host
或Connection
标头;将这些留给requests
处理。我怀疑这里需要Origin
或Referer
标头。由于这是一个 API ,User-Agent
标题可能也有些过分。