Google Drive API - Objective C - 示例?

时间:2012-07-06 12:47:40

标签: objective-c google-drive-api

我无法找到使用Objective-C访问Google Drive API的任何代码示例。有谁知道在哪里找到一些?我将Google客户端库合并到我的项目中,但我不知道如何从代码开始。

我对身份验证的工作方式特别感兴趣,因为重定向到授权网址,然后再回到应用程序就像对待网络应用程序一样,似乎不适用于原生iOS应用程序。

谢谢! 克里斯

1 个答案:

答案 0 :(得分:2)

对Objective C的支持仅为in alpha stage apparently

您可以在Google代码上找到示例驱动器应用程序:http://code.google.com/p/google-api-objectivec-client/source/browse/trunk/Examples/DriveSample/

对于身份验证,您可以将GTMOAuth2Authentication与OAuth令牌一起使用,通常存储在钥匙串中:

// 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];