Logged In: YES
user_id=405789
Originator: YES

Here's the python script for reading the json (testing stage)

url = self.config['url']
req = urllib2.Request( url )
response = urllib2.urlopen(req)
page_contents = response.read()
print page_contents
import json
print "-------------"
obj = json.read(page_contents)
print obj