Onkar Janwa
Onkar Janwa

Reputation: 3950

Uber ERROR Invalid scope requested

Here is my auth url

https://login.uber.com/oauth/v2/authorize?client_id={{client id}}&response_type=code&scope=profile request

Is theire any issue in above url.

Upvotes: 2

Views: 3616

Answers (3)

Fantin Raimbault
Fantin Raimbault

Reputation: 11

They forgot an 's' in the documentation file.

Try scopes=... instead of scope=...

Upvotes: 1

Alexander Graebe
Alexander Graebe

Reputation: 797

Did you try replacing the spaces with %20, like so?

https://login.uber.com/oauth/v2/authorize?client_id={{client id}}&response_type=code&scope=profile%20request

Upvotes: 0

7imon7ays
7imon7ays

Reputation: 301

Is the request scope configured in your app? The list of scopes in the scope parameter has to be a subset of the scopes you configured.

You could try the same request without the scope parameter. That'll default to whatever scopes you configured (you'll need at least one for your authorization to go through).

Upvotes: 3

Related Questions