我在我的应用中使用Google drive ios sdk。我在登录过程中使用以下代码。
GTMOAuth2ViewControllerTouch *authViewController = [[GTMOAuth2ViewControllerTouch alloc] initWithScope:kGTLAuthScopeDrive
clientID:kClientId
clientSecret:kClientSecret
keychainItemName:self.keychainID
delegate:self
finishedSelector:@selector(viewController:finishedWithAuth:error:)];
[parentController presentViewController:authViewController animated:YES completion:^(void){
NSLog(@"Presented");
}];
但是在登录过程中我得到一个奇怪的屏幕,在此屏幕中显示令牌。有谁知道为什么会这样?我可以以任何方式避免使用此屏幕吗?
答案 0 :(得分:0)
是的,您可以避免这种情况。加载帐户窗口只需几秒钟。
这是一种身份验证过程,当您登录时,会出现Authentication Request token
这种类型,用于登录Google云端硬盘帐户。