Method: apps.list
Mantieni tutto organizzato con le raccolte
Salva e classifica i contenuti in base alle tue preferenze.
Elenca le app installate da un utente.
Richiesta HTTP
GET https://www.googleapis.com/drive/v2/apps
L'URL utilizza la sintassi di transcodifica gRPC.
Parametri di query
Parametri |
appFilterExtensions |
string
Un elenco separato da virgole di estensioni dei file per il filtro Apri con. Nella risposta verranno incluse tutte le app nell'ambito della query di app specificata che possono aprire una qualsiasi delle estensioni di file indicate. Se vengono forniti anche appFilterMimeTypes , il risultato è un'unione dei due elenchi di app risultanti.
|
appFilterMimeTypes |
string
Un elenco separato da virgole di tipi MIME per il filtro Apri con. Nella risposta verranno incluse tutte le app nell'ambito della query dell'app specificato che possono aprire uno qualsiasi dei tipi MIME indicati. Se vengono forniti anche appFilterExtensions , il risultato è un'unione dei due elenchi di app risultanti.
|
languageCode |
string
Un codice di lingua o di impostazioni internazionali, come definito da BCP 47, con alcune estensioni del formato LDML di Unicode (http://www.unicode.org/reports/tr35/).
|
Corpo della richiesta
Il corpo della richiesta deve essere vuoto.
Corpo della risposta
Un elenco di applicazioni di terze parti che l'utente ha installato o a cui ha concesso l'accesso a Google Drive.
In caso di esito positivo, il corpo della risposta contiene dati con la seguente struttura:
Rappresentazione JSON |
{
"defaultAppIds": [
string
],
"items": [
{
object (App )
}
],
"etag": string,
"kind": string,
"selfLink": string
} |
Campi |
defaultAppIds[] |
string
apps.list of app IDs that the user has specified to use by default. L'elenco è in ordine di priorità inverso (dalla più bassa alla più alta).
|
items[] |
object (App )
L'elenco delle app.
|
etag |
string
L'ETag dell'elenco.
|
kind |
string
Questo valore è sempre drive#appList .
|
selfLink |
string
Un link per tornare a questo elenco.
|
Ambiti di autorizzazione
Richiede il seguente ambito OAuth:
https://www.googleapis.com/auth/drive.apps.readonly
Alcuni ambiti sono soggetti a restrizioni e richiedono una valutazione della sicurezza per poter essere utilizzati dalla tua app. Per ulteriori informazioni, consulta la Guida all'autorizzazione.
Salvo quando diversamente specificato, i contenuti di questa pagina sono concessi in base alla licenza Creative Commons Attribution 4.0, mentre gli esempi di codice sono concessi in base alla licenza Apache 2.0. Per ulteriori dettagli, consulta le norme del sito di Google Developers. Java è un marchio registrato di Oracle e/o delle sue consociate.
Ultimo aggiornamento 2025-07-25 UTC.
[null,null,["Ultimo aggiornamento 2025-07-25 UTC."],[],[],null,["# Method: apps.list\n\n- [HTTP request](#body.HTTP_TEMPLATE)\n- [Query parameters](#body.QUERY_PARAMETERS)\n- [Request body](#body.request_body)\n- [Response body](#body.response_body)\n - [JSON representation](#body.AppList.SCHEMA_REPRESENTATION)\n- [Authorization scopes](#body.aspect)\n- [Try it!](#try-it)\n\nLists a user's installed apps.\n\n### HTTP request\n\n`GET https://www.googleapis.com/drive/v2/apps`\n\nThe URL uses [gRPC Transcoding](https://google.aip.dev/127) syntax.\n\n### Query parameters\n\n| Parameters ||\n|-----------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `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. |\n| `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. |\n| `languageCode` | `string` A language or locale code, as defined by BCP 47, with some extensions from Unicode's LDML format (\u003chttp://www.unicode.org/reports/tr35/)\u003e. |\n\n### Request body\n\nThe request body must be empty.\n\n### Response body\n\nA list of third-party applications which the user has installed or given access to Google Drive.\n\nIf successful, the response body contains data with the following structure:\n\n| JSON representation |\n|------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"defaultAppIds\": [ string ], \"items\": [ { object (/workspace/drive/api/reference/rest/v2/apps#App) } ], \"etag\": string, \"kind\": string, \"selfLink\": string } ``` |\n\n| Fields ||\n|-------------------|-----------------------------------------------------------------------------------------------------------------------------------------|\n| `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). |\n| `items[]` | `object (`[App](/workspace/drive/api/reference/rest/v2/apps#App)`)` The list of apps. |\n| `etag` | `string` The ETag of the list. |\n| `kind` | `string` This is always `drive#appList`. |\n| `selfLink` | `string` A link back to this list. |\n\n### Authorization scopes\n\nRequires the following OAuth scope:\n\n- `https://www.googleapis.com/auth/drive.apps.readonly`\n\nSome scopes are restricted and require a security assessment for your app to use them. For more information, see the [Authorization guide](/workspace/guides/configure-oauth-consent)."]]