Android 用 Google+ プラットフォームを
PlusClient plusClient =
new PlusClient.Builder(this, this, this).setScopes(Scopes.PLUS_LOGIN).build();
onConnected-Listener で、ログインしているユーザーのデータを読みたい
@Override
public void onConnected() {
super.onConnected();
Person person = plusClient.getCurrentPerson();
}
メソッド呼び出し getCurrentPerson は null を返します。誰かがユーザーデータを読み取ることができましたか?