So if you check this after every ride, you'll know exactly what everyone rated you, right?
How to find your Uber passenger rating
41–50 of 197 posts
Re: How to find your Uber passenger rating
#42This is a lot easier than the Charles MITM proxy I used to intercept the Uber iPhone API calls to determine mine. I feel kind of silly now that I didnt bother checking the web API. I 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 roug…
Some of this is remainders from when they just had consultants working on this. Look at hash_password() at client.py :)
Re: How to find your Uber passenger rating
#43Are there any drivers in the audience who can tell us what different ratings mean?
I'm not a driver, but I know enough about Uber to answer this... Drivers are prompted to rate their passenger immeditely after the trip, in the exact same manner as riders rate their driver. Then, when a trip is offered to a driver, they're shown the potential customers rating (and other details), then the driver will choose to accept the job or not
Re: How to find your Uber passenger rating
#44Anyway, looks like you can go and pull the token out of the page and just do
curl https://m.uber.com/cn --data '{"messageType":"PingClient","token":"xxxxx","app":"client"}' | jq .client.ratin
to check it programmatically. Could be interesting to have a service detect somehow that you'd just finished a ride and show you the new score (and possibly the change, etc)
Re: How to find your Uber passenger rating
#45This is a lot easier than the Charles MITM proxy I used to intercept the Uber iPhone API calls to determine mine. I feel kind of silly now that I didnt bother checking the web API. I 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 roug…
Love to see more of your web scraper. Could make cool tools such as send you a text / notification each time your rating changes.
Re: How to find your Uber passenger rating
#46Anyone have some insight into why this data is there in the first place? Is this an accidental leak, some sort of optimization or something else?
Re: How to find your Uber passenger rating
#47This is a lot easier than the Charles MITM proxy I used to intercept the Uber iPhone API calls to determine mine. I feel kind of silly now that I didnt bother checking the web API. I 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 roug…
If you're curious, I put together a Python library for that: https://github.com/tals/uber.py Some of this is remainders from when they just had consultants working on this. Look at hash_password() at client.py :)
Re: How to find your Uber passenger rating
#48What 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…
> how much you tip (do they see this before rating?) You don't tip with Uber - 'gratuity' is already included. Regardless, the rate-the-customer screen is seen immediately after stopping the trip
Re: How to find your Uber passenger rating
#49Earlier quoted context omitted.
Not necessarily. Drivers rating the passenger is a defence against passengers rating the drivers low, and also a way for Uber to keep quality standards high by stopping 'bad' passengers from using the service.
>Drivers rating the passenger is a defence against passengers rating the drivers low I don't see how this it the case, assuming that drivers don't know what passengers rated them before rating the passenger.
Re: How to find your Uber passenger rating
#50So if you check this after every ride, you'll know exactly what everyone rated you, right?