參考資料 Google Apps Tasks API: Instantiate a Client
在Step2的地方
AccessTokenResponse response = new GoogleAuthorizationCodeGrant(httpTransport, jsonFactory, clientId, clientSecret, code, redirectUrl).execute();
在API中並不能這樣建立TokenResponse,所以我把他改成下列模式
GoogleTokenResponse response = new GoogleAuthorizationCodeTokenRequest(httpTransport, jsonFactory, clientId, clientSecret, code, redirectUrl).execute();
如此就可以順利運行了
1 則留言:
呵...
你一直都是這麼強!
連這個都有研究...
張貼留言