Crates.io | uber_api |
lib.rs | uber_api |
version | 0.2.8 |
source | src |
created_at | 2023-02-07 15:26:34.34341 |
updated_at | 2024-05-06 09:21:06.573598 |
description | A library coded in Rust and hosted on crates.io for Uber's API. In particular, Uber Direct with their DaaS API. The Menu API Models have been added as well (endpoints in progress). |
homepage | |
repository | |
max_upload_size | |
id | 778831 |
size | 206,198 |
The functions state which API can be called, the full documentation of that endpoint along with all the parameters needed for it, the complete Uber Direct docs - last updated 9/2/2023 - can be found within each function. The general flow is that each endpoint takes a request struct as its parameter. The docs for the direct parameters are also shown at each request struct. Create the request struct with the relevant information and simply pass that into the function to call the Uber Direct API.
It contains functions for the following:
Functions |
---|
Get authorization codes |
Get a quote for a delivery |
Create a new delivery |
Cancel a delivery |
Update a delivery |
Get the information about the delivery |
Get a list of deliveries |
Get the returned proof of delivery document from driver |
At the time of creation, access to these APIs may require written approval from Uber. Once successful, they will provide you with the relevant customer_id, client_id, and client_secret needed for Authentication.
Since then the models required for the Uber Menu integration have been added.
If you want to test that your authentication codes work, an example has been setup for you to run. Clone the repo: Uber API and run the main file, ensuring you pass in the relevant auth fields as parameters
Example:
cargo run -- --customer-id="1234" --client-id="xyz" --client-secret="xyz"