Skip to content

Instantly share code, notes, and snippets.

@ars096
Created August 27, 2013 13:55
Show Gist options
  • Save ars096/6353831 to your computer and use it in GitHub Desktop.
Save ars096/6353831 to your computer and use it in GitHub Desktop.
import requests
API_TOKEN = 'b24cd...........92'
WORKSPACE = 7000
res = requests.get('https://toggl.com/reports/api/v2/details',
params={'user_agent': 'your@emale.com',
'workspace_id': WORKSPACE},
auth=(API_TOKEN, 'api_token'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment