For questions about developing software that utilizes the Uber API. DO NOT ask customer support questions here. Please send those to Uber's customer support department.
Questions tagged [uber-api]
864 questions
2
votes
1 answer
Why should i use fusion.js by uber instead of create-react-app?
Uber says that it comes with a pre-configured optimized boilerplate and plugin based architecture. Does plugin based architecture mean it is something like gulp?

Ashley Fernandes
- 1,179
- 10
- 18
2
votes
1 answer
Migration from Ride Request Uber widget in Android as it has been deprecated
In previous versions of the Uber Rides SDK there was a simple way to embed the Uber rider experience in your application with the Ride Request Widget but now it has been deprecated.
My code is:
SessionConfiguration config = new…

alamshahbaz16497
- 139
- 13
2
votes
1 answer
Uber Api Error : The rider's payment method is invalid and they must update their billing info
I tried to integrate uber to my app. Create an app and I reached the level of request a ride.
i tried to request a ride by using following post method:
https://api.uber.com/v1.2/requests?access_token=
then getting an error like
{
"meta":…

Amil Sajeev
- 270
- 2
- 9
2
votes
1 answer
Using uber API to schedule rides for others (customers)
1.
I've been researching into the Uber API and I can't seem to find concrete information regarding whether or not you can request rides for other people. I want to be able to offer clients that come to my business a ride home or a ride to my…

codewookie
- 77
- 1
- 5
2
votes
1 answer
How to access the Uber API OAuth 2.0 bearer token in curl calls
I am getting a Access Token from the Uber API which is returned as json output of the below code. The problem i am facing is i need only the access token stored in variable which i need to pass on my other API calls.
My Code :

Sandy505
- 888
- 3
- 15
- 26
2
votes
1 answer
How to use the access token from uber api in accessing trip history
I am trying the Uber API and have got the following response output from the Uber API which has the Access Token…

Sandy505
- 888
- 3
- 15
- 26
2
votes
1 answer
Why can't I establish a connection to the Uber API?
I ran the code as per the documentation
from uber_rides.session import Session
from uber_rides.client import UberRidesClient
session = Session(server_token=)
client = UberRidesClient(session)
response = client.get_products(37.77, -122.41)
I…

djokester
- 567
- 9
- 20
2
votes
1 answer
How to get code from UBER's authorise api
I am trying to get the code from json using below url using postman.but could able to get the code in json.
uber login link
Moreover when i hit this url in browser i am redirecting to my localhost url with query parameter where i can get the…

Bhargav Patel
- 1,098
- 10
- 23
2
votes
0 answers
POST to /requests results in semi-permanent 409 current_trip_exists error, GET shows no_current_trip
We're getting a 409 current_trip_exists error when we make a post request. When we make a get request to the /requests/current endpoint it says no current trip and when we make a get request to the /requests/requestId endpoint it says the last trip…

user3117327
- 81
- 7
2
votes
1 answer
Can I build my own backend service using uber api?
I need to make my own application with 90% of uber features
Can I build my own backend service using uber api?
I mean create my own server side and use uber algorithms,
Drivers and customers register with me not uber

Ehab Ahmed
- 21
- 2
2
votes
1 answer
Uber API - get receipt for all trips
ANY IDEA, When can I get receipt of my users trips that did not originate from the request app ? Can the travel history be pulled between two dates ?
As per doc,
The receipt endpoint will only provide receipts for ride requests originating from…

Narayanan
- 163
- 3
- 10
2
votes
1 answer
I want to use Get /v1.2/products REST API of Uber in android
I want to use Uber in my app by using its Rest API, and when I hit the same from Postman and i will get the same error every time
{
"message": "No authentication provided.",
"code": "unauthorized"
}
after entering the same request as given…

Abhinav Suman
- 940
- 1
- 9
- 29
2
votes
0 answers
Uber Carthage swift ridesClient.requestRide gives ride=nil
I am trying to integrate Uber SDK with my current iOS app.
I have Xcode :- 8.1 iOS :-10.1 and swift version :- 3.0
I have done setup for "Carthage" for Uber integration.
i am calling requestRide method and its always giving ride=nil
let…

harishchandra gangavane
- 227
- 2
- 9
2
votes
1 answer
How to fetch cabs location near by me using uber api
I have created the RideParameters but I am unable to fetch cab details
RideParameters rideParams = new RideParameters.Builder()
.setPickupLocation(37.775304, -122.417522, "Uber HQ", "1455 Market Street, San Francisco")
…

Rohan Chavan
- 177
- 1
- 10
2
votes
1 answer
Start and end location for a completed trip with uber-api
my girlfriend and I have some cool statistics to provide for an uber user, but without start and end location, is basically impossible.
Given the current API, that's what we tried:
GET /v1.2/history: provide some information, but related to…

Mateus Costa
- 103
- 3
- 5