This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(async function () { | |
(fetch("https://riders.uber.com/api/getTripsForClient", {"credentials":"include","headers":{"accept":"*/*","accept-language":"en-US,en;q=0.9","content-type":"application/json","x-csrf-token":"*INSERT YOUR TOKEN HERE*"},"referrer":"https://riders.uber.com/trips?offset=0","referrerPolicy":"no-referrer-when-downgrade","body":"{\"limit\":50,\"offset\":\"0\",\"range\":{\"fromTime\":null,\"toTime\":null}}","method":"POST","mode":"cors"})).then(function(response) { | |
return response.json(); | |
}).then(function(data) { | |
const trips = data.data.trips.trips; | |
const totalCosts = trips.reduce((acc, trip) => { | |
return Number(trip.clientFare) + (Number(acc) || 0) | |
}) | |
console.log(totalCosts) | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am johnny-y-wang on github. | |
* I am johnnyw (https://keybase.io/johnnyw) on keybase. | |
* I have a public key ASAcQXCkjdZJj3uT0r_Izzwg7ZxGgUtfmOABxf-d4mAAZQo | |
To claim this, I am signing this object: |