Looks like the Great Firewall or something like it is preventing you from completely loading www.skritter.com because it is hosted on Google App Engine, which is periodically blocked. Try instead our mirror:
This might also be caused by an internet filter, such as SafeEyes. If you have such a filter installed, try adding appspot.com to the list of allowed domains.
The Users endpoint gets you access to properties and settings for users, both the one authenticated and others. Use this endpoint if you would like:
Goal: Get all the settings for the User the client just logged in.
Solution: fetch the User with the user_id value passed back in Authentication
# very few params params = { 'bearer_token': token, 'gzip': False } url = 'http://beta.skritter.com/api/v0/users/%s' % user_id response = client.get(url, params) response = json.loads(response.content) return response['User']