Android アプリで新しい Youtube API V3 : https://developers.google.com/youtube/v3/を使用しようとしています。
ユーザーを YouTube サービスにログインさせるために、新しい Google Play Services を選択しました: http://developer.android.com/google/play-services/index.html
これが私のコードです:
AccountManager manageurcomptes = AccountManager.get(ActiviteGeneral.this);
Account[] comptes = manageurcomptes
.getAccountsByType(GoogleAuthUtil.GOOGLE_ACCOUNT_TYPE);
String jeton;
try {
jeton = GoogleAuthUtil.getToken(ActiviteGeneral.this, comptes[0].name,
"audience:server:client_id:xxxxxxxxxxxxxxxxxxxx.apps.googleusercontent.com");
int i = 0;
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (GoogleAuthException e) {
// TODO Auto-generated catch block
e.printStackTrace();
GoogleAuthUtil.getToken スコープ パラメータについては、Android デベロッパー ブログの記事「Verifying Back-End Calls from Android Apps」http://android-developers.blogspot.fr/2013/01/verifying-back-end-callsに従いました。 -from-android.htmlで、Google API コンソールにアプリを登録しました。
「インストール済みアプリケーションのクライアント ID」を作成しました。
結果は、"detailMessage" = "Unknown" の GoogleAuthException です。
間違いはどこですか?