humanapi / humanapi-python-client

HumanAPI client written in Python
5 stars 3 forks source link

Authenticated session does not retrieve actual user information #2

Open jimmykane opened 9 years ago

jimmykane commented 9 years ago

Hi there.

I am using the client in the following example:

humanapi_session = self.get_humanapi_auth().get_auth_session(self.request.get('code'))

# Get the API
users_humanapi = self.get_human_api(humanapi_session.access_token)

# Get the profile
users_humanapi_profile = users_humanapi.profile.get()
users_humanapi_human = users_humanapi.human.get()
users_humanapi_activities = users_humanapi.activity.list()

The users_humanapi_profile contains data as well as users_humanapi_human

The activities are empty though