I'm calling cloud code function from Python. In the Cloud Code I'm returning the value using a call like
response.success(game.id);
Everything seems to work except that my Python client code is not able to get the result
connection = httplib.HTTPSConnection('api.parse.com', 443)
connection.request(...
response = connection.getresponse()
print response.status
print response.read()
I'm getting:
200
{"result":"success"}
How can I extract the value returned by Cloud Code function?