且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

无法从iOS中的Google Drive获取文件

更新时间:2023-12-04 21:02:58

You probably aren't configuring your GTLServiceDrive with the GTMOAuth2Authentication instance you get after successful authentication.

Example code:

- (void)viewController:(GTMOAuth2ViewControllerTouch *)viewController finishedWithAuth:(GTMOAuth2Authentication *)authResult error:(NSError *)error
{
    if (error) {
        // Auth failed, handle the error
    }
    else {
        self.driveService.authorizer = authResult;
    }
}