iPhoneのgoogle auth2.0で認証が成功した後、次のAPIリクエストに進むにはどうすればよいですか? キー付きのリターンデータを取得しました。カレンダー API とタスク API を使用する必要があります。
- (void)viewController:(GTMOAuth2ViewControllerTouch *)viewController
finishedWithAuth:(GTMOAuth2Authentication *)auth
error:(NSError *)error {
NSString *nextURLString = [NSString stringWithFormat:@"https://www.google.com/calendar/feeds/default/allcalendars/mymail@gmail.com"];
//i just gave this url for testing. dont know which url is required here.
NSURL *nextURL = [NSURL URLWithString:nextURLString];
NSURLRequest *request = [NSURLRequest requestWithURL:nextURL];
GTMHTTPFetcher *fetcher = [GTMHTTPFetcher fetcherWithRequest:request];
if (error != nil) {
// Authentication failed
} else {
// Authentication succeeded
[fetcher setAuthorizer:auth];
}
}