Google Drive API
我一直无法找到任何使用Objective-C访问Google Drive API的代码示例。 有谁知道在哪里可以找到一些? 我将Google客户端库集成到了我的项目中,但我不知道如何从代码开始。
我特别感兴趣的是身份验证如何工作,因为重定向到授权url,然后返回到应用程序,就像您对网络应用程序做的似乎不适用于本机iOS应用程序。
谢谢! 克里斯
对Objective C的支持显然只在alpha阶段。
您可以在Google代码中找到示例驱动器应用程序:http://code.google.com/p/google-api-objectivec-client/source/browse/trunk/Examples/DriveSample/
对于身份验证,您可以使用带有OAuth令牌的GTMOAuth2Authentication,通常存储在钥匙串中:
// Load the OAuth token from the keychain, if it was previously saved
NSString *clientID = [clientIDField_ stringValue];
NSString *clientSecret = [clientSecretField_ stringValue];
GTMOAuth2Authentication *auth;
auth = [GTMOAuth2WindowController authForGoogleFromKeychainForName:kKeychainItemName
clientID:clientID
clientSecret:clientSecret];
链接地址: http://www.djcxy.com/p/92413.html
上一篇: Google Drive API