Android アプリケーションに Uber を実装しようとしています。ユーザーの認証時に「認証チャレンジが見つかりません」というエラーが表示されました。
Uber でアプリを作成し、画像に示すようにアプリに次のスコープを与えました。
私のリダイレクトURLは次のとおりです。http://localhost/auth
私のAndroidアプリでは、認可呼び出しのために次のスコープリストを与えました
public static final String SCOPES = "profile history_lite history";
そしてparamsリストをAPIに追加しました。
params.add(new BasicNameValuePair("response_type", Constants.CODE));
params.add(new BasicNameValuePair("client_id", Constants
.getUberClientId(this)));
params.add(new BasicNameValuePair("scope", Constants.SCOPES));
params.add(new BasicNameValuePair("redirect_uri", Constants
.getUberRedirectUrl(this)));
この問題を解決する方法を教えてください。