作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用的是 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 登录,这不适用于服务帐户凭据,您必须使用正确的代码和正确类型的凭据。
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();
...
要从服务帐户 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/
我是一名优秀的程序员,十分优秀!