我想实现一个实用程序来使用 Google API(例如日历 API)执行后台操作。该实用程序没有用户界面,因此我需要在服务器端执行所有身份验证流程。任何java建议?
问问题
1076 次
1 回答
1
我将从这里开始:
https://developers.google.com/accounts/docs/OAuth2ServiceAccount
这应该为您提供服务器到服务器请求授权的一般高级信息。然后在此处阅读 Java 客户端:
https://code.google.com/p/google-api-java-client/wiki/OAuth2
您应该能够将这两组信息拼凑在一起。祝你好运。
于 2013-05-20T10:54:35.333 回答