设置Dr. Edit错误

时间:2014-04-28 11:43:55

标签: java oauth-2.0 google-api-client

我关注的是all the steps from the readme file DR。编辑Java。

我在Eclipse中创建了一个项目,我将java文件夹复制到我的项目中,然后添加了Drive和OAuth API。

我无法编译,因为存在依赖错误:

import com.google.api.services.oauth2.model.Userinfo;

此错误:

The import com.google.api.services.oauth2.model.Userinfo cannot be resolved

我正在使用google-api-client-1.16.0-rc和google-api-services-oauth2-v2-rev68-1.16.0-rc库(它们是从Google Plugin for Eclipse下载的,如教程所述)。< / p>

我该怎么办?

谢谢。

1 个答案:

答案 0 :(得分:1)

最新版本的OAuth API不包含&#34; Userinfo&#34;类,它已被&#34; Userinfoplus&#34;

取代

参考:https://developers.google.com/resources/api-libraries/documentation/oauth2/v2/java/latest/com/google/api/services/oauth2/model/Userinfoplus.html

所以只需更换&#34; Userinfo&#34;与&#34; Userinfoplus&#34;它应该工作。

import com.google.api.services.oauth2.model.Userinfo;