up vote 1 down vote favorite
2
share [g+] share [fb]

I'm writing a simple python script that will interface with the AIM servers using the OSCAR protocol. 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.

I tried to follow these steps to a tee, but the process fails in the last one. Here is my 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&" + urllib.quote("http://api.oscar.aol.com/aim/startOSCARSession?") + data

	digest = base64.b64encode(hmac.new(self.session_key, hashdata, sha256).digest())

	urldata =  urldata + "&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()

I get the following response from the server:

{ "response" : {
                 "statusCode":401, 
                 "statusText":"Authentication Required. statusDetailCode 1014",
                 "statusDetailCode":1014, 
                 "data":{
                           "ts":1235878395
                         }
               }
}

I tried troubleshooting it in various ways, but the URL's I generate look the same as the ones shown in the signon flow example. And yet, it fails.

Any idea what I'm doing wrong here? Am I hashing the values wrong? Am I encoding something improperly? Is my session timing out?

link|improve this question

80% accept rate
Did you ever find a solution to this problem? – ryyst Apr 30 '11 at 21:07
Nah, never figured it out. I got bored and sort of moved on to other stuff. – Tuxmentat May 1 '11 at 20:02
I actually figured it out. Basically, I just looked at the libpurple source code and debugged my code with that... – ryyst May 2 '11 at 14:25
feedback

2 Answers

Try using Twisted's OSCAR support instead of writing your own? It hasn't seen a lot of maintenance, but I believe it works.

link|improve this answer
feedback

URI Encode your digest?

-moxford

link|improve this answer
Tried that and it didn't work. Plus the examples in the docs explicitly show you not to URI encode it. Good try though. Thanks! – Tuxmentat Mar 20 '09 at 13:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.