Method: apps.list

Lists a user's installed apps.

HTTP request

GET https://www.googleapis.com/drive/v2/apps

The URL uses gRPC Transcoding syntax.

Query parameters

Parameters
appFilterExtensions

string

A comma-separated list of file extensions for open with filtering. All apps within the given app query scope which can open any of the given file extensions will be included in the response. If appFilterMimeTypes are provided as well, the result is a union of the two resulting app lists.

appFilterMimeTypes

string

A comma-separated list of MIME types for open with filtering. All apps within the given app query scope which can open any of the given MIME types will be included in the response. If appFilterExtensions are provided as well, the result is a union of the two resulting app lists.

languageCode

string

A language or locale code, as defined by BCP 47, with some extensions from Unicode's LDML format (http://www.unicode.org/reports/tr35/).

Request body

The request body must be empty.

Response body

A list of third-party applications which the user has installed or given access to Google Drive.

If successful, the response body contains data with the following structure:

JSON representation
{
  "etag": string,
  "defaultAppIds": [
    string
  ],
  "kind": string,
  "selfLink": string,
  "items": [
    {
      object (App)
    }
  ]
}
Fields
etag

string

The ETag of the list.

defaultAppIds[]

string

apps.list of app IDs that the user has specified to use by default. The list is in reverse-priority order (lowest to highest).

kind

string

This is always drive#appList.

items[]

object (App)

The list of apps.

Authorization scopes

Requires the following OAuth scope:

  • https://www.googleapis.com/auth/drive.apps.readonly

Some scopes are restricted and require a security assessment for your app to use them. For more information, see the Authorization guide.