How to find your Uber passenger rating
medium.com
How to find your Uber passenger rating
1–10 of 197 posts
Re: How to find your Uber passenger rating
#2Re: How to find your Uber passenger rating
#3Re: How to find your Uber passenger rating
#4Re: How to find your Uber passenger rating
#5Nice hack. I imagine using it to see if a driver gave me a good rating or not based on the delta between my new score and old score.
Re: How to find your Uber passenger rating
#6I suspect most drivers, like most passengers, give a 5.0 to almost everyone, but dock points for being a dick. It just seems there's no other way to differentiate passengers, since they'll be paying the fee regardless.
Re: How to find your Uber passenger rating
#7I also made a web scraper to get my uber trip details (incl. route driven), save it to JSON and map the trips all at once. http://i.imgur.com/Q1W59rD.jpg. Here's a quick dump of the code https://github.com/joshhunt/uber. It's pretty rough and it makes a lot of assumptions (e.g. metric system and AUD). I never really plan on looking at it again, so your milage may vary.
I also found their API structure to be quite unusual: They make a call to something like `api.uber.com/` with POST data of something like
{
url: '/api/user/123123123',
method: 'get',
location: [lat, long]
}
and you'll recieve a response back of something like {
responseData: {
username: 'madeofpalk'
...rest of requested data...
},
vehicles: [
...list of all vehicles and their locations...
]
...other data that wasnt explicitly requested but comes through with every request...
}
I had never seen this pattern before, and thought it was quite unusual (especially for a 'new hip startup' that uses Python and Node.js). Anyone care to comment on why they may have choosen something like this?Re: How to find your Uber passenger rating
#8What kind of details do you think go into this rating? My guess: how long driver waits for you to get in the car, how drunk and annoying you are, how much you tip (do they see this before rating?), how profitable your ride is. I suspect most drivers, like most passengers, give a 5.0 to almost everyone, but dock points for being a dick. It just seems there's no other way to differentiate passengers, since they'll be p…
Re: How to find your Uber passenger rating
#9Re: How to find your Uber passenger rating
#10What kind of details do you think go into this rating? My guess: how long driver waits for you to get in the car, how drunk and annoying you are, how much you tip (do they see this before rating?), how profitable your ride is. I suspect most drivers, like most passengers, give a 5.0 to almost everyone, but dock points for being a dick. It just seems there's no other way to differentiate passengers, since they'll be p…
This is not very scientific. I got 4.8 which means absolutely nothing to me.