0

试图在 python 中的方法中返回请求库会话...看起来很简单,我的脚本工作正常,然后我将它清理到一个类和方法中,但它不起作用,似乎会话不能从方法返回? 相当困惑,因为我确信这应该像这样工作。

这是更改之前的代码,它可以正常工作:

import requests

httpHeaders = { 'Host' : 'www.somesite.com',
    'User-Agent' : 'Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:16.0) Gecko/20100101 Firefox/16.0',
    'Accept' : 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
    'Accept-Language' : 'en-US,en;q=0.5',
    'Accept-Encoding' : 'gzip, deflate',
    'Connection' : 'keep-alive',
    'Referer' : 'https://blah.someloginsite.com/logon',
    'Content-Type' : 'application/x-www-form-urlencoded',
    'Content-Length' : '59',
    'Referer' : 'someurl.com'}

postContent = { 'UserName': 'blabhbhbhb',
    'Password': 'qwerty', 
    'submit' : '', 
    'returnUrl' : ''}

s = requests.Session()
s.post('https://blah.someloginsite.com/logon', data=postContent, headers=httpHeaders)

param = {'someID': '225', 'anotherID': '0'}
r = s.post('https://someurl/doactionthatneedslogin', data=param)

print r.status_code
print r.headers['content-type']
print r.encoding
print r.text

上面的代码工作正常,但是当我把它分解成一个类和函数/方法时它就不起作用了。现在我清理了代码,但它不起作用,似乎我无法在请求库中返回会话,但我确定我可以......?

import requests


class doit():

    def __init__(self, username, password):
        print "test"
        spSession = self.getSession(username, password) 
        self.doAction(spSession, 33, 4)     

    #Initializes session 
    def getSession(self, username, password):
        httpHeaders = {SAME AS ABOVE BLAHBLAHBLAH}

        postContent = { 'UserName': username ,
            'Password': password , 
            'submit' : '', 
            'returnUrl' : ''}

        s = requests.Session()
        s.post('https://someurl.com/logon', data=postContent, headers=httpHeaders)      
        return s

    def doAction(self, spSession, someid,anotherid):
        param = {'someid': someid , 'anotherid': anotherid}
        r = spSession.post('https://someurl/doactionthatneedslogin', data=param)

        print r.status_code
        print r.headers['content-type']
        print r.encoding
        print r.text

doit("usernameas","qwerty")

知道发生了什么吗?第一个脚本有效;而第二个没有。我所做的只是清理它。我想拥有它,这样我就可以以不同的方法一遍又一遍地使用会话。

第二个脚本确实适用于登录,因此会话似乎很好,但第二个操作即使已登录也无法按预期工作。

4

1 回答 1

0

好吧,这两个例子似乎使用了不同的参数,但我能看到的唯一显着区别是第一个例子中的这条线......

param = {'someID': '225', 'anotherID': '0'}

...第二个示例中的这一行...

self.doAction(spSession, 33, 4)

...第一个使用字符串作为参数,第二个使用整数。如果将第二行更改为...有什么不同吗?

self.doAction(spSession, '33', '4')

...?

于 2013-04-28T09:16:35.673 回答