REST Resource: enterprises.webApps
Mit Sammlungen den Überblick behalten
Sie können Inhalte basierend auf Ihren Einstellungen speichern und kategorisieren.
Ressource: WebApp
JSON-Darstellung |
{
"name": string,
"title": string,
"startUrl": string,
"icons": [
{
object (WebAppIcon )
}
],
"displayMode": enum (DisplayMode ),
"versionCode": string
} |
Felder |
name |
string
Der Name der Webanwendung, der beim Erstellen vom Server im Format enterprises/{enterpriseId}/webApps/{packageName} generiert wird.
|
title |
string
Der Titel der Webanwendung, wie er dem Nutzer angezeigt wird (z.B. in einer Liste anderer Anwendungen oder als Label für ein Symbol).
|
startUrl |
string
Die Start-URL, d.h. die URL, die geladen werden soll, wenn der Nutzer die Anwendung öffnet.
|
icons[] |
object (WebAppIcon )
Eine Liste mit Symbolen für die Web-App. Muss mindestens ein Element enthalten.
|
displayMode |
enum (DisplayMode )
Der Anzeigemodus der Web-App.
|
versionCode |
string (int64 format)
Die aktuelle Version der App. Die Version kann sich im Laufe der Lebensdauer der Web-App automatisch erhöhen. Google kümmert sich aber intern um die Wartung, um die Web-App auf dem neuesten Stand zu halten.
|
WebAppIcon
Ein Symbol für eine Web-App. Unterstützte Formate: PNG, JPG und WEBP.
JSON-Darstellung |
{
"imageData": string
} |
Felder |
imageData |
string
Die tatsächlichen Bytes des Bildes in einem base64url-codierten String (c.f. RFC4648, Abschnitt 5 „Base 64 Encoding with URL and Filename Safe Alphabet“). - Mögliche Bildformate sind PNG oder JPG.
- Das Bild sollte idealerweise quadratisch sein.
- Das Image sollte idealerweise eine Größe von 512 x 512 haben.
|
DisplayMode
Der Anzeigemodus der Web-App.
Enums |
DISPLAY_MODE_UNSPECIFIED |
Nicht verwendet. |
MINIMAL_UI |
Öffnet die Webanwendung mit einer minimalen Anzahl von Browser-UI-Elementen zur Steuerung der Navigation und zum Anzeigen der Seiten-URL. |
STANDALONE |
Öffnet die Webanwendung, sodass sie wie eine eigenständige native Anwendung aussieht. Die UI-Elemente des Browsers und die Seiten-URL sind nicht sichtbar, die Systemstatusleiste und die Schaltfläche „Zurück“ sind jedoch sichtbar. |
FULL_SCREEN |
Öffnet die Web-App im Vollbildmodus ohne sichtbare Steuerelemente. Die Browser-UI-Elemente, die Seiten-URL, die Systemstatusleiste und die Schaltfläche „Zurück“ sind nicht sichtbar und die Web-App nimmt den gesamten verfügbaren Anzeigebereich ein. |
Methoden |
|
Erstellt eine Webanwendung. |
|
Löscht eine Web-App. |
|
Web-App abrufen |
|
Listet Web-Apps für ein bestimmtes Unternehmen auf. |
|
Aktualisiert eine Web-App. |
Sofern nicht anders angegeben, sind die Inhalte dieser Seite unter der Creative Commons Attribution 4.0 License und Codebeispiele unter der Apache 2.0 License lizenziert. Weitere Informationen finden Sie in den Websiterichtlinien von Google Developers. Java ist eine eingetragene Marke von Oracle und/oder seinen Partnern.
Zuletzt aktualisiert: 2025-07-26 (UTC).
[null,null,["Zuletzt aktualisiert: 2025-07-26 (UTC)."],[[["\u003cp\u003eA web app resource defines properties like name, title, URL, icons, and display mode, and allows for version control.\u003c/p\u003e\n"],["\u003cp\u003eWeb apps can be managed with methods to create, delete, retrieve, list, and update them.\u003c/p\u003e\n"],["\u003cp\u003eWebAppIcon defines the icon for the web app, supporting PNG, JPG, and WebP formats, ideally in a 512x512 size.\u003c/p\u003e\n"],["\u003cp\u003eDisplayMode allows controlling the web app's presentation, ranging from minimal UI to full-screen mode.\u003c/p\u003e\n"]]],["This describes a WebApp resource, its associated icon, and display settings. WebApps have properties like `name`, `title`, `startUrl`, `icons`, `displayMode`, and `versionCode`. `WebAppIcon` includes image data encoded in base64url. `DisplayMode` settings are `MINIMAL_UI`, `STANDALONE`, or `FULL_SCREEN`. Methods available include `create`, `delete`, `get`, `list`, and `patch`, enabling management of web apps within an enterprise.\n"],null,["# REST Resource: enterprises.webApps\n\n- [Resource: WebApp](#WebApp)\n - [JSON representation](#WebApp.SCHEMA_REPRESENTATION)\n- [WebAppIcon](#WebAppIcon)\n - [JSON representation](#WebAppIcon.SCHEMA_REPRESENTATION)\n- [DisplayMode](#DisplayMode)\n- [Methods](#METHODS_SUMMARY)\n\nResource: WebApp\n----------------\n\nA web app.\n\n| JSON representation |\n|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"name\": string, \"title\": string, \"startUrl\": string, \"icons\": [ { object (/android/management/reference/rest/v1/enterprises.webApps#WebAppIcon) } ], \"displayMode\": enum (/android/management/reference/rest/v1/enterprises.webApps#DisplayMode), \"versionCode\": string } ``` |\n\n| Fields ||\n|---------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `name` | `string` The name of the web app, which is generated by the server during creation in the form `enterprises/{enterpriseId}/webApps/{packageName}`. |\n| `title` | `string` The title of the web app as displayed to the user (e.g., amongst a list of other applications, or as a label for an icon). |\n| `startUrl` | `string` The start URL, i.e. the URL that should load when the user opens the application. |\n| `icons[]` | `object (`[WebAppIcon](/android/management/reference/rest/v1/enterprises.webApps#WebAppIcon)`)` A list of icons for the web app. Must have at least one element. |\n| `displayMode` | `enum (`[DisplayMode](/android/management/reference/rest/v1/enterprises.webApps#DisplayMode)`)` The display mode of the web app. |\n| `versionCode` | `string (`[int64](https://developers.google.com/discovery/v1/type-format)` format)` The current version of the app. Note that the version can automatically increase during the lifetime of the web app, while Google does internal housekeeping to keep the web app up-to-date. |\n\nWebAppIcon\n----------\n\nAn icon for a web app. Supported formats are: png, jpg and webp.\n\n| JSON representation |\n|---------------------------------|\n| ``` { \"imageData\": string } ``` |\n\n| Fields ||\n|-------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `imageData` | `string` The actual bytes of the image in a base64url encoded string (c.f. RFC4648, section 5 \"Base 64 Encoding with URL and Filename Safe Alphabet\"). - The image type can be png or jpg. - The image should ideally be square. - The image should ideally have a size of 512x512. \u003cbr /\u003e |\n\nDisplayMode\n-----------\n\nThe display mode of the web app.\n\n| Enums ||\n|----------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `DISPLAY_MODE_UNSPECIFIED` | Not used. |\n| `MINIMAL_UI` | Opens the web app with a minimal set of browser UI elements for controlling navigation and viewing the page URL. |\n| `STANDALONE` | Opens the web app to look and feel like a standalone native application. The browser UI elements and page URL are not visible, however the system status bar and back button are visible. |\n| `FULL_SCREEN` | Opens the web app in full screen without any visible controls. The browser UI elements, page URL, system status bar and back button are not visible, and the web app takes up the entirety of the available display area. |\n\n| Methods ------- ||\n|--------------------------------------------------------------------------------|----------------------------------------|\n| ### [create](/android/management/reference/rest/v1/enterprises.webApps/create) | Creates a web app. |\n| ### [delete](/android/management/reference/rest/v1/enterprises.webApps/delete) | Deletes a web app. |\n| ### [get](/android/management/reference/rest/v1/enterprises.webApps/get) | Gets a web app. |\n| ### [list](/android/management/reference/rest/v1/enterprises.webApps/list) | Lists web apps for a given enterprise. |\n| ### [patch](/android/management/reference/rest/v1/enterprises.webApps/patch) | Updates a web app. |"]]