Changed login from urlencoded to json

pull/91/head
Luc Charland 2015-04-21 09:59:50 -04:00 committed by Francis Lachapelle
parent a25a01495f
commit 3858911007
1 changed files with 3 additions and 2 deletions

View File

@ -14,8 +14,9 @@ def getAuthCookie(hostname, port, username, password) :
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cjar))
urllib2.install_opener(opener)
creds = urllib.urlencode([("userName",username), ("password", password)])
req = urllib2.Request("http://%s:%s/SOGo/connect" % (hostname, port), creds)
creds2 = simplejson.dumps({"userName":username, "password": password})
req = urllib2.Request("http://%s:%s/SOGo/connect" % (hostname, port), creds2,
{'Content-Type': 'application/json'})
fd = urllib2.urlopen(req)