我希望能够从Google Calendar API检索用户日历和活动。基本上我设法从Android的AccountManager获得一个Auth-Token并执行请求,但我得到了
"error": {
"errors": [
{
"domain": "global",
"reason": "authError",
"message": "Invalid Credentials",
"locationType": "header",
"location": "Authorization"
}
],
"code": 401,
"message": "Invalid Credentials"
}
}
作为回应。产生它的代码是(部分)。第一次运行时,Android要求我授权访问我的应用程序的日历数据,我接受了。
final Account account = manager.getAccountsByType("com.google")[0];
AccountManagerFuture<Bundle> accountManagerFuture =
manager.getAuthToken(account, "cl", true,
new AccountManagerCallback<Bundle>() {
public void run(AccountManagerFuture<Bundle> future) {
try {
Bundle bundle = future.getResult();
if (bundle.containsKey(AccountManager.KEY_AUTHTOKEN)) {
final String authToken = bundle.getString(AccountManager.KEY_AUTHTOKEN);
final Uri usersCalendars = Uri.parse(
"https://www.googleapis.com/calendar/v3/users/me/calendarList")
.buildUpon()
.appendQueryParameter("key","--myapikey--")
.build();
HttpClient client = new DefaultHttpClient();
HttpGet request = new HttpGet(usersCalendars.toString());
request.setHeader("Authorization","GoogleLoginAuth=" + authToken);
request.setHeader("GData-Version","3.0");
HttpResponse response = client.execute(request);
// outputting response, logging etc
正如你所看到的,我没有使用google-api-java-client,因为我也无法使用google-api-java-client。基本上,示例代码调用不再存在/移动到Android的AccountManager的方法,而android-calendar-example生成401错误而不是列出我的日历。
如果你们有任何提示,文档等等,我会很高兴。
编辑我刚尝试通过
使令牌无效manager.invalidateAuthToken("com.google",authToken);
然后通过相同的结果检索一个新的。
答案 0 :(得分:2)
授权标头值中有一个空格 - "GoogleLogin auth=xxxxxxx".