https://developers.google.com/people/v1/getting-startedドキュメントを参照して認証を行っています。次の懸念があります-
1) クライアント シークレットが見つかりません。client_secret_.json をダウンロードしても、client_id、project_id、auth_uri、token_uri、auth_provider_x509_cert_url、redirect_uris という属性のみを取得します。
2) 認証コードとは?のようなドキュメントに記載されているように
// Read the authorization code from the standard input stream.
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
System.out.println("What is the authorization code?");
String code = in.readLine();