URL schemes for native Google Drive iOS apps

I found that the native iOS app for Google Drive, which can be downloaded from the AppStore, supports the URL scheme:

googledrive:// 
  • Is there any documentation for this scheme or something where I can find how to authorize my application using the native iOS application for Google Drive?
  • Is it even possible to authorize the application in this way?
  • Is there any other way of authorization through a web browser?
+4
source share
1 answer

If you want to integrate Google Drive into your iOS application, you must use the Google API Objective-C client library that supports Google Drive.

For authorization, the client library will use the web view to initiate the OAuth 2 stream.

You can see an example example application that uses Google Drive.

As for the native iOS application for iOS, there is currently no way to interact with it. Although, if we do this, we will probably add these functions to the Objective-C client library :)

0
source

All Articles