有人能告诉我为什么我不能使用相同的令牌从 Google 检索 userInfo 和日历列表吗?
我已经设置了正确的范围(我认为):
private static final String PLUS_ME_SCOPE = "https://www.googleapis.com/auth/plus.me";
private static final String USER_INFO_PROFILE_SCOPE = "https://www.googleapis.com/auth/userinfo.profile";
private static final String USER_INFO_EMAIL_SCOPE = "https://www.googleapis.com/auth/userinfo.email";
private static final String GOOGLE_CALENDAR_SCOPE = "https://www.googleapis.com/auth/calendar";
要获取用户信息,我使用以下网址:https ://www.googleapis.com/oauth2/v1/userinfo?alt=json&access_token=对于我使用的日历: https: //www.googleapis.com/calendar/v3/用户/我/calendarList?minAccessRole=writer&key=。
在用户信息中,我得到了所有正确的信息,但对于日历,我得到了错误 401:需要登录。
这里有什么问题?