gpt4 book ai didi

java - 在重新验证用于使用 Oauth 发送电子邮件的 Gmail API 时,refresh_token 为 null

转载 作者:行者123 更新时间:2023-11-30 07:00:43 25 4
gpt4 key购买 nike

我正在使用 Scribe for oauth 来获取 auth_code 的 access_token 和 refresh_token。它对于第一次身份验证效果很好。当我在应用程序中禁用凭据时, token 仍然存在于我的应用程序的 Gmail 连接应用程序中。当我重新启用 oauth 时,我仅获得新 auth_code 的有效新 access_token。但refresh_token为空。我尝试使用 oauthplayground 复制相同的内容,在那里我可以看到有效的刷新和访问 token ,而 Playground token 仍然存在于 Google 连接的应用程序中。

这是我使用 scribe-1.3.0 API 实现的代码

    OAuthRequest oAuthRequest = new OAuthRequest(Verb.POST, "https://accounts.google.com/o/oauth2/token");

oAuthRequest.addBodyParameter("client_id", SMTP_OAUTH_CLIENT_ID);
oAuthRequest.addBodyParameter("client_secret", SMTP_OAUTH_CLIENT_SECRET);

oAuthRequest.addBodyParameter("scope", scope);
oAuthRequest.addBodyParameter("redirect_uri", GoogleApi.getRedirectURL());

oAuthRequest.addBodyParameter("code", authCode);
oAuthRequest.addBodyParameter("grant_type", "authorization_code");

Response response = oAuthRequest.send();

这是使用 googleapi-client-1.20 尝试的类似代码,结果仍然相同。

        GoogleTokenResponse tokenResponse = new GoogleAuthorizationCodeTokenRequest(
new NetHttpTransport(),
new JacksonFactory(),
SMTP_OAUTH_CLIENT_ID, SMTP_OAUTH_CLIENT_SECRET,
authCode,
GoogleApi.getRedirectURL())
.execute();

Credential gcredential = new GoogleCredential
.Builder()
.setTransport(new NetHttpTransport.Builder().build())
.setJsonFactory(new JacksonFactory())
.setClientSecrets(SMTP_OAUTH_CLIENT_ID, SMTP_OAUTH_CLIENT_SECRET)
.build()
.setFromTokenResponse(tokenResponse);

gcredential.refreshToken();

System.out.println(gcredential.getRefreshToken());

谁能帮我解决我哪里出错了?感谢您花时间查看此问题。

最佳答案

重新认证时需要设置这些参数access_type=offlineapproval_prompt=force然后您将收到 refresh_token

下面是一个示例 URL https://accounts.google.com/o/oauth2/auth?client_id=CLIENT_ID&scope=SCOPE&redirect_uri=REDIRECT_URL&response_type=code&access_type=offline&approval_prompt=force

关于java - 在重新验证用于使用 Oauth 发送电子邮件的 Gmail API 时,refresh_token 为 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40974619/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com