A java wrapper for Uber's REST API for Android and Java applications.
Api calls implemented:
- Request a Car
- Request details
- Cancel request
- Request map
- User Profile
- User Activity (v1.1)
- Product Types
- Price Estimates
- Time Estimates
- Promotions
- OAuth tokens (authorization code and refresh token)
Download the latest JAR or grab via Gradle:
compile 'com.victorsima:uber-java-client:0.0.3'
or Maven:
<dependency>
<groupId>com.victorsima</groupId>
<artifactId>uber-java-client</artifactId>
<version>0.0.3</version>
</dependency>
UberClient client = new UberClient("YOUR_OAUTH_ID", "YOUR_OAUTH_SECRET", "YOUR_OAUTH_REDIRECT_URI", LogLevel.BASIC);
UberClient client = new UberClient("YOUR_SERVER_TOKEN", LogLevel.BASIC);
Request a car (requires a valid oauth access token)
Products products = client.getApiService().getProducts(40.74844,-73.985664);
String productId = products.getProducts().get(0).getProductId();
Request request = client.getApiService().postRequest(new RequestBody(productId, 40.74844, -73.985664, 40.74844, -73.985664, null));
To run tests against a mock api server:
./gradlew test
To run tests against the Uber's sandbox server, populate uber.properties with your own developer info.
./gradlew testSandbox
- Pull requests are welcome.
The MIT License (MIT)
Copyright (c) 2014 Victor Sima <vic.sima@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.