gpt4 book ai didi

java - 无法授权使用 Google api 客户端访问环聊聊天 api

转载 作者:行者123 更新时间:2023-12-02 08:39:23 30 4
gpt4 key购买 nike

我使用的是 google.api.client 版本 1.30.9 。我想在发送之前使用 Hangout Chat Api 验证我的请求。在官方文档中https://developers.google.com/api-client-library/java/google-api-java-client/oauth2 google 已使用 GoogleCredential,但现已弃用。我使用以下代码来获取可用于构建 HangoutChat 对象的经过身份验证的凭据对象。

private static Credential authorize() throws Exception {
httpTransport=GoogleNetHttpTransport.newTrustedTransport();
dataStoreFactory = new FileDataStoreFactory(DATA_STORE_DIR);
// load client secrets
GoogleClientSecrets clientSecrets = GoogleClientSecrets.load(JSON_FACTORY,
new InputStreamReader(HangoutsChat.class.getResourceAsStream("/client_secrets.json")));
// set up authorization code flow
GoogleAuthorizationCodeFlow flow = new GoogleAuthorizationCodeFlow.Builder(
httpTransport, JSON_FACTORY, clientSecrets,
Collections.singleton(HangoutsChat.DEFAULT_BASE_URL)).setDataStoreFactory(dataStoreFactory)
.build();
// authorize
return new AuthorizationCodeInstalledApp(flow, new LocalServerReceiver()).authorize("user");

}

AuthorizationCodeInstalledApp 和 LocalServerReceiver 在最新版本的 google API 中不可用。如何在使用环聊聊天 API 发出请求之前进行身份验证。

最佳答案

您声明您正在尝试使用服务帐户,但您使用的代码是为 Web 应用程序设计的,以便使用 Oauth2 登录,这不适用于服务帐户凭据,您必须使用正确的代码和正确类型的凭据。

service account

HttpTransport httpTransport = GoogleNetHttpTransport.newTrustedTransport();
JsonFactory jsonFactory = JacksonFactory.getDefaultInstance();
...
// Build service account credential.

GoogleCredential credential = GoogleCredential.fromStream(new FileInputStream("MyProject-1234.json"))
.createScoped(Collections.singleton(PlusScopes.PLUS_ME));
// Set up global Plus instance.
plus = new Plus.Builder(httpTransport, jsonFactory, credential)
.setApplicationName(APPLICATION_NAME).build();
...

显式凭据加载

Google auth libray

要从服务帐户 JSON key 获取凭据,请使用 GoogleCredentials.fromStream(InputStream) 或 GoogleCredentials.fromStream(InputStream, HttpTransportFactory)。请注意,在访问 token 可用之前必须刷新凭据。

GoogleCredentials credentials = GoogleCredentials.fromStream(new FileInputStream("/path/to/credentials.json"));
credentials.refreshIfExpired();
AccessToken token = credentials.getAccessToken();
// OR
AccessToken token = credentials.refreshAccessToken();

关于java - 无法授权使用 Google api 客户端访问环聊聊天 api,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61478477/

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