UberAPI-Android-Demo
UberAPI-Android-Demo copied to clipboard
Is the scope defined correctly?
I see this code works only when I change the SCOPES from "profile history_lite history" to "profile history_lite".
Old Code: public static final String SCOPES = "profile history_lite history";
Modified Code of mine: public static final String SCOPES = "profile history_lite history";
In their python-flask example, they have only scope as "profile" and "history_lite". "scopes": ["profile", "history_lite"],
https://github.com/uber/Python-Sample-Application/blob/master/config.json
I got 400 bad request if I pass "history" in the scope.