I am working on integrating Uber Server-side API using python. I am able to run the authorization flow successfully and get the Access Token.
With the received Access Token I am able to get information like user profile, user history. But whenever I do a ride request ( using Sandbox ), the following error occurs.
HTTP/1.1 **401 Unauthorized**<br/>
Server: nginx<br/>
Date: Tue, 03 May 2016 09:29:19 GMT<br/>
Content-Type: application/json<br/>
Content-Length: 75<br/>
Connection: keep-alive<br/>
X-Uber-App: uberex-sandbox<br/>
Strict-Transport-Security: max-age=0<br/>
X-Content-Type-Options: nosniff<br/>
X-XSS-Protection: 1; mode=block
{"message":"Invalid OAuth 2.0 credentials provided.","code":"unauthorized"}.
I am not able to find the what exactly I missing with. Can anyone suggest what might be the issue?