rozer
rozer

Reputation: 141

What is redirect_uri required by Uber API?

I was trying to implement Uber API into an android app. I went through the documentation: https://developer.uber.com/docs/riders/ride-requests/tutorials/api/android

What is redirect_uri? How can I create redirect_uri for an android app?

Upvotes: 1

Views: 576

Answers (1)

ashkhn
ashkhn

Reputation: 1630

It's implemented by OAuth2 APIs and essentially means the url where the provider (in this case Uber) redirects the status of the auth request on successful or failed authentication. See OAuth2 spec for further info.

In your case it could be your server where you store the access token of the user in your database

Upvotes: 3

Related Questions