Я пытаюсь использовать Oauth2 для аутентификации пользователя google, зарегистрированного на моем устройстве. Я создал идентификатор клиента, но я не могу получить ожидаемый результат.
Код:
String mScope="oauth2:server:client_id:NNNNNNNNNNN.apps.googleusercontent.com:api_scope:https://www.googleapis.com/auth/plus.login";
protected Void doInBackground(String... accountName) {
Log.i("Inside on AsynTask:","I am here");
String accName=accountName[0];
try {
token1 = GoogleAuthUtil.getToken(Web_view_demo.this,
accName,
mScope);
Log.i("Inside on AsynTask:","I am here");
} catch (IOException transientEx) {
// Network or server error, try later
Log.e("IO", transientEx.toString());
} catch (UserRecoverableAuthException e) {
// Recover (with e.getIntent())
Log.e("UserRecover", e.toString());
//Intent recover = e.getIntent();
//startActivityForResult(recover, 1);
} catch (GoogleAuthException authEx) {
// The call is not ever expected to succeed
// assuming you have already verified that
// Google Play services is installed.
Log.e("GoogleAuth", authEx.toString());
}
Log.i("Token:",token1);
return null;
}
Ошибка:
com.google.android.gms.auth.GoogleAuthException: Unknown
Помогите оценить.
Спасибо.