Python请求库没有正确跟随302?

时间:2012-03-17 17:20:22

标签: python redirect http-status-code-302 http-request python-requests

我正在使用requests library尝试在phpBB论坛上发帖。

我的代码如下所示:

self.r = requests.session()
d = self.r.get('http://examplephpbbforum.com/community/posting.php?mode=reply&f=' + forumid + '&t=' + topicid)

sid = stringBetween('style.php?sid=', '&id=2', d.content)

lastclick = stringBetween('lastclick" value="', '" />', d.content)
creation_time = stringBetween('creation_time" value="', '" />', d.content)
form_token = stringBetween('form_token" value="', '" />', d.content)
topic_cur_post_id = stringBetween('topic_cur_post_id" value="', '" />', d.content)
payload = {'addbbcode20':'100', 'message':message, 'topic_cur_post_id':topic_cur_post_id, 'lastclick':lastclick, 'post':'Submit', 'attach_sig':'on', 'creation_time':creation_time, 'form_token':form_token}
headers = {'User-Agent':'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:7.0.1) Gecko/20100101 Firefox/7.0.1', 'Referer':'http://examplephpbbforum.com/community/posting.php?mode=reply&f=' + forumid + '&t=' + topicid, 'Content-Type':'application/x-www-form-urlencoded', 'Connection':'Keep-alive', 'Host':'examplephpbbforum.com', 'Accept-Language':'en-us,en;q=0.5', 'Accept-Encoding':'gzip, deflate', 'Accept':'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8'}

d = self.r.post('http://examplephpbbforum.com/community/posting.php?mode=reply&f=' + forumid + '&sid=' + sid + '&t=' + topicid, data=payload, headers=headers, allow_redirects=True)

然后,我通过在响应中搜索字符串来检查主题是否已成功发布。

流量的流量是在第一个帖子之后,有一个302重定向,请求然后跟随它成功发布到的页面。

有时它有效(可能是50次中的1次)但通常不起作用。响应只是第一个get请求的页面。 (发布回复页面)

它应该每次都重定向到发布的消息,但它不是出于某种原因。

如果我用wireshark嗅探流量,似乎响应通常会发送一个URL重定向到,但似乎出现了问题。

任何人都知道可能导致此失败的原因以及如何解决这个问题?

1 个答案:

答案 0 :(得分:3)

我认为您的问题可能是由于请求在处理重定向时未使用正确的HTTP方法。该错误已于30-03-2012修复;有关更多详细信息,请参阅问题#269(修复后续重定向请求方法类型)。