デスクトップ アプリケーションの認証に成功しました。というファイルが保存されていますStoredCredential
。アプリを実行するたびにブラウザへの URL のコピー、承認などの手順を実行し続ける必要がないようにするために、既に保存した資格情報を使用したいと考えています。
これまでの私のコード:
GoogleAuthorizationCodeFlow flow = new GoogleAuthorizationCodeFlow.Builder(
httpTransport,
JSON_FACTORY,
CLIENT_ID,
CLIENT_SECRET,
SCOPE)
.setDataStoreFactory(dataStoreFactory)
.setApprovalPrompt("auto").setAccessType("offline").build();
//
System.out.println("flow success");
String url = flow
.newAuthorizationUrl()
.setRedirectUri(REDIRECT_URI)
.build();
System.out.println("Please open the following URL in your browser then "
+ "type the authorization code:");
System.out.println(" " + url);
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String code = br.readLine();
GoogleTokenResponse tokenResponse
= flow.newTokenRequest(code).setRedirectUri(REDIRECT_URI).execute();
GoogleCredential credential = new GoogleCredential
.Builder()
.setTransport(new NetHttpTransport())
.setJsonFactory(new JacksonFactory())
.setClientSecrets(CLIENT_ID, CLIENT_SECRET)
.addRefreshListener(new CredentialRefreshListener() {
@Override
public void onTokenResponse(
Credential credential,
TokenResponse tokenResponse) throws IOException {
System.out.println("Token Refreshed Succesfully");
}
@Override
public void onTokenErrorResponse(
Credential credential,
TokenErrorResponse tokenErrorResponse) throws IOException {
System.out.println("ERROR WITH TOKEN WTF?");
}})
.build();
保存された資格情報を読み取り、コマンド ライン プロンプトをバイパスするにはどうすればよいですか?
私は次のようなことを考えていました:
if (stored cred exists) {
try {
// use
} catch {
// prompt the user
}
}