requests
サンドボックスのUber apisエンドポイントは、次のような応答を返します。
u'<html><title>404: Not Found</title><body>404: Not Found</body></html>'
.
サンドボックスの場合、エンドポイントを使用しています:
https://sandbox-api.uber.com/v1/sandbox/requests
uber prod エンドポイントを使用すると、同じリクエストが正常に機能します
https://api.uber.com/v1/requests
私はAPIにpython requests libを使用しました:
import request
params = {'start_longitude': 'xx.xxxxxx', 'end_longitude': 'xx.xxxxxx',
'start_latitude': 'xx.xxxxxx', 'end_latitude': 'xx.xxxxxx',
'product_id': '0dfc35e0-b4be-49a1-b1bf-0bc7217e4b58'}
header = {'Content-Type': 'application/json',
'Authorization': 'Bearer xxx-acces-token-xxx'`}
res = requests.post('https://sandbox-api.uber.com/v1/sandbox/requests',
data=json.dumps(params), headers=headers)
そして、URLをuber prod環境に変更すると、この作業が機能すると言ったように:
res = requests.post('https://api.uber.com/v1/requests',
data=json.dumps(params), headers=headers)