-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi2_test.py
59 lines (46 loc) · 2.04 KB
/
api2_test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# -*- coding: utf-8 -*-
# python 2.7 version
import json
import requests
import urlparse
from requests.auth import HTTPBasicAuth
requests.packages.urllib3.disable_warnings()
try:
# change it:
login = 'login'
password = 'password'
client_id = 'your application client id'
client_secret = 'your application client secret key'
###
# registration in Cloudbus:
resp = requests.get('https://baseride.com/oauth2/authorize/?response_type=code&client_id='+client_id, auth=HTTPBasicAuth(login,password), allow_redirects=False)
if resp.status_code!=302 or not resp.headers['Location'] or not resp.headers['Location'].startswith('http://baseride.com/?code='):
print 'ERR code '+str(resp.status_code)
quit()
code = urlparse.urlparse(resp.headers['Location']).query.split('=')[1]
resp = requests.get('https://baseride.com/oauth2/token/?callback=call_back&client_id='+client_id+'&client_secret='+client_secret+'&code=' +code+ '&grant_type=authorization_code&redirect_uri=http://baseride.com/', allow_redirects=False)
if resp.status_code!=200:
print 'ERR code '+str(resp.status_code)
quit()
json_str = str(resp.content).split('call_back(')[1].split(');')[0]
json_data = json.loads(json_str)
token = json_data[u'access_token']
# applied api calls :
# user profile
resp = requests.get('https://baseride.com/api/v2/profile/whoami/?format=json', headers={'Authorization': 'BEARER '+token})
if resp.status_code!=200:
print 'ERR code '+str(resp.status_code)
quit()
json_data = json.loads(resp.text)
# ...
# vehicle info
vehicle_id = 29687 # vehicle from Demo Cloudbus; change it to correct vehicle id
url = 'https://baseride.com/api/v2/transport/vehicle/'+str(vehicle_id)+'/?format=json'
resp = requests.get(url, headers={'Authorization': 'BEARER '+token})
if resp.status_code!=200:
print 'ERR code '+str(resp.status_code)
quit()
json_data = json.loads(resp.text)
# ...
except BaseException, ex:
print 'ERR '+str(ex)