A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developers.google.com/workspace/drive/web/integrate-open below:

Integrate with Drive UI's "Open with" context menu | Google Drive

Skip to main content Integrate with Drive UI's "Open with" context menu

Stay organized with collections Save and categorize content based on your preferences.

When a user selects a file and clicks the Drive UI's "Open with" menu item, Drive redirects the user to that app's Open URL defined in Configure a Drive UI integration.

If you checked the "Importing" box when you configured a Drive UI integration, the user can select a combination of app-specific and Google Workspace files to open. When you configure a Drive UI integration, app-specific files are defined in the "Default MIME types" and "Default file extensions" fields, whereas Google Workspace files are defined in the "Secondary MIME types" and "Secondary file extensions" fields.

For each file that the user wants to open, Drive checks the MIME types against your defined default and secondary MIME types:

Handle an Open URL for app-specific documents

As mentioned in Configure a Drive UI integration, your app receives template variables with information for your app to open the file. Your app receives a default set of template variables within a state parameter. The default state information for an app-specific Open URL is:

{
  "ids": ["ID"],
  "resourceKeys":{"RESOURCE_KEYS":"RESOURCE_KEYS"},
  "action":"open",
  "userId":"USER_ID"
}

This output includes the following values:

Your app must act on this request by following these steps:

  1. Verify that the action field has a value of open and the ids field is present.
  2. Use the userId value to create a new session for the user. For more information on signed-in users, see Users & new events.
  3. Use the files.get method to check permissions, fetch file metadata, and download the file content using the ID values.
  4. If resourceKeys was set on the request, set the X-Goog-Drive-Resource-Keys request header. For more information on resource keys, see Access link-shared files using resource keys.

The state parameter is URL-encoded, so your app must handle the escape characters and parse it as JSON.

Note: All apps, including apps opening files from shortcuts and third-party shortcuts, should call the files.get method to check the user's permissions for a document. Apps should warn read-only users when they're opening a file they cannot edit or save (instead of letting them spend time editing, and then displaying an error on save). Handle an Open URL for Google Workspace documents

As mentioned in Configure a Drive UI integration, your app receives a default set of template variables within a state parameter. The default state information for a Google Workspace Open URL is:

{
  "exportIds": ["ID"],
  "resourceKeys":{"RESOURCE_KEYS":"RESOURCE_KEYS"},
  "action":"open",
  "userId":"USER_ID"
}

This output includes the following values:

Your app must act on this request by following these steps:

  1. Verify that this is a request to open a file by detecting both the open value in the state field and the presence of the exportIds field.

  2. Use the files.get method to check permissions, fetch file metadata, and determine the MIME type using the EXPORT_ID values.

  3. Convert the file content using the files.export method. The following code sample shows how to export a Google Workspace document to the requested MIME type.

  4. If resourceKey was set on the request, set the X-Goog-Drive-Resource-Keys request header. For more information on resource keys, see Access link-shared files using resource keys.

Display converted files as read-only or present a dialog letting the user to save the file as the new file type.

The state parameter is URL-encoded, so your app must handle the escape characters and parse it as JSON.

Users & new events

Drive apps should treat all "open with" events as potential sign-ins. Some users might have multiple accounts, so the user ID in the state parameter might not match the current session. If the user ID in the state parameter doesn't match the current session, end the current session for your app and sign in as the requested user.

In addition to opening an application from Google Drive UI, applications can display a file picker to select content from within an app. For more information, see the Google Picker.

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025-08-13 UTC.

[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-13 UTC."],[],[]]


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4