Authentication Required - Problems Establishing AIM OSCAR Session using Python - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T22:30:18Z http://stackoverflow.com/feeds/question/599218 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/599218/authentication-required-problems-establishing-aim-oscar-session-using-python 0 Authentication Required - Problems Establishing AIM OSCAR Session using Python Tuxmentat 2009-03-01T03:52:58Z 2009-06-17T04:03:55Z <p>I'm writing a simple python script that will interface with the AIM servers using the <a href="http://dev.aol.com/aim/oscar/" rel="nofollow">OSCAR protocol</a>. It includes a somewhat complex handshake protocol. You essentially have to send a GET request to a specific URL, receive XML or JSON encoded reply, extract a special session token and secret key, then generate a response using the token and the key.</p> <p>I tried to follow <a href="http://dev.aol.com/aim/oscar/#AUTH" rel="nofollow">these steps</a> to a tee, but the process fails in the last one. Here is my code:</p> <pre><code>class simpleOSCAR: def __init__(self, username, password): self.username = username self.password = password self.open_aim_key = 'whatever' self.client_name = 'blah blah blah' self.client_version = 'yadda yadda yadda' def authenticate(self): # STEP 1 url = 'https://api.screenname.aol.com/auth/clientLogin?f=json' data = urllib.urlencode( [ ('k', self.open_aim_key), ('s', self.username), ('pwd', self.password), ('clientVersion', self.client_version), ('clientName', self.client_name)] ) response = urllib2.urlopen(url, data) json_response = simplejson.loads(urllib.unquote(response.read())) session_secret = json_response['response']['data']['sessionSecret'] host_time = json_response['response']['data']['hostTime'] self.token = json_response['response']['data']['token']['a'] # STEP 2 self.session_key = base64.b64encode(hmac.new(self.password, session_secret, sha256).digest()) #STEP 3 uri = "http://api.oscar.aol.com/aim/startOSCARSession?" data = urllib.urlencode([ ('a', self.token), ('clientName', self.client_name), ('clientVersion', self.client_version), ('f', 'json'), ('k', self.open_aim_key), ('ts', host_time), ] ) urldata = uri+data hashdata = "GET&amp;" + urllib.quote("http://api.oscar.aol.com/aim/startOSCARSession?") + data digest = base64.b64encode(hmac.new(self.session_key, hashdata, sha256).digest()) urldata = urldata + "&amp;sig_sha256=" + digest print urldata + "\n" response = urllib2.urlopen(urldata) json_response = urllib.unquote(response.read()) print json_response if __name__ == '__main__': so = simpleOSCAR("aimscreenname", "somepassword") so.authenticate() </code></pre> <p>I get the following response from the server:</p> <pre><code>{ "response" : { "statusCode":401, "statusText":"Authentication Required. statusDetailCode 1014", "statusDetailCode":1014, "data":{ "ts":1235878395 } } } </code></pre> <p>I tried troubleshooting it in various ways, but the URL's I generate look the same as the ones shown in the <a href="http://dev.aol.com/aim/oscar/#SIGNON" rel="nofollow">signon flow example</a>. And yet, it fails.</p> <p>Any idea what I'm doing wrong here? Am I hashing the values wrong? Am I encoding something improperly? Is my session timing out?</p> http://stackoverflow.com/questions/599218/authentication-required-problems-establishing-aim-oscar-session-using-python/644921#644921 0 Answer by moxford for Authentication Required - Problems Establishing AIM OSCAR Session using Python moxford 2009-03-13T23:00:37Z 2009-03-13T23:00:37Z <p>URI Encode your digest?</p> <p>-moxford</p> http://stackoverflow.com/questions/599218/authentication-required-problems-establishing-aim-oscar-session-using-python/1005063#1005063 1 Answer by Glyph for Authentication Required - Problems Establishing AIM OSCAR Session using Python Glyph 2009-06-17T04:03:55Z 2009-06-17T04:03:55Z <p>Try using <a href="http://twistedmatrix.com/trac/browser/trunk/twisted/words/protocols/oscar.py" rel="nofollow">Twisted's OSCAR support</a> instead of writing your own? It hasn't seen a lot of maintenance, but I believe it works.</p>