Reputation: 3950
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
Reputation: 11
They forgot an 's' in the documentation file.
Try scopes=...
instead of scope=...
Upvotes: 1
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
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