rides-java-sdk
rides-java-sdk copied to clipboard
Uber Rides Java SDK (beta)
Hello team, We recently ran into an issue when making the API call to `/v1.2/requests/current` via `RidesService.getCurrentRide()`. It seems the driver number sometimes return curly braces `{}` instead of `String`...
## Motivation We extensively use Rides API and have about 30 integration tests with various API interactions. When using sandbox our build took about 8 minutes to finish, so we...
Can you add support for the Uber Driver APIs? Here is an [example diff for the python sdk](https://github.com/uber/rides-python-sdk/pull/45/files#diff-f28d240a7be85035693dfe494cc123c6).
RidesService service; service = UberRidesApi.with(session).build().createService(); Having error on below line: Response response = service.getProducts(37.79f, -122.39f).execute();
See https://github.com/uber/rides-android-sdk/issues/136
https://developer.uber.com/docs/riders/references/api/v1.2/products-get GET v1.2/products API exposes multiple attributes. Out of this few attributes like 'cost_per_minute', 'distance_unit', 'minimum', 'price_details' are not getting mapped in JAVA SDK. The model class Product does not...
I doubled checked which methods are provided by the SDK compared to the documentation. The SDK lacks the following: - [PATCH] /v1/requests/current - [GET] /v1/requests/{request_id}/receipt - [POST] /v1/reminders - [GET]...
It was not showing correct message for wrong clientSecret rather throwing NPE. When i checked in code If response is not 200 then you are parsing it to TokenResponseException ....
Understanding which methods are available and how to construct appropriate requests is harder as it could be. An automatically generated JavaDoc would improve navigation. **UPDATE**: One idea might be to...
The scope class provides an ENum of available scopes. It lists `PAYMENT_METHOD` and `RIDE_WIDGETS`. However, these scopes are not documented [here](https://developer.uber.com/docs/rides/scopes).