谁能告诉我为什么我不能用同样的道理,从谷歌获取用户信息和日历列表?
我已经设置了正确的范围(我认为):
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 =作家与关键= 。
在用户信息我得到的所有正确的信息,但日历我收到错误401:需登录。
什么在这里是怎么回事?