Live data from Hacker News

How to find your Uber passenger rating

medium.com

1–10 of 197 posts

Re: How to find your Uber passenger rating

#6
What 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 paying the fee regardless.

Re: How to find your Uber passenger rating

#7
This 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 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

#8

What 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…

You don't tip Uber drivers.

Re: How to find your Uber passenger rating

#10

What 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…

Tip is included in the ride, you can't adjust it.

This is not very scientific. I got 4.8 which means absolutely nothing to me.

Post reply on HN