Changed login from urlencoded to json

This commit is contained in:
Luc Charland
2015-06-12 11:46:48 -04:00
committed by Francis Lachapelle
parent a25a01495f
commit 3858911007
+3 -2
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)