編輯

共用方式為


Build Actions in Microsoft 365

Note

Actions are available in public developer preview.

When you create an app ensure that you define user intent, determine the object to perform the action, and construct the corresponding handler that facilitates task completion for the user.

To build Actions for your app, follow these steps:

  1. Prerequisites.
  2. Configure app manifest.
  3. Retrieve Action information through context object.
  4. Access content through Graph API.

Prerequisites

Before you get started, ensure that you install the following:

  Install Description
  Node.js A JavaScript runtime environment. For more information, see Node.js version compatibility table for project type.
  Microsoft Edge (recommended) or Google Chrome A browser with developer tools.
  Visual Studio Code Visual Studio Code is a lightweight but powerful source code editor, which comes with built-in support for JavaScript, TypeScript, Node.js, and SharePoint Framework (SPFx) build environments. Use the latest version.
  Teams Toolkit A Microsoft Visual Studio Code extension that creates a project scaffolding for your app. Use the latest version.

Configure app manifest

Add the actions property and define the intent, object, and handler for your actions in the app manifest (previously called Teams app manifest).

The following is an app manifest example for Actions that can be triggered on files such as Excel, Word, PDF, or PowerPoint:

{
  "$schema": "https://developer.microsoft.com/json-schemas/teams/vDevPreview/MicrosoftTeams.schema.json",
  "manifestVersion": "devPreview",

  "actions": [
    {
      "id": "relatedTasks",
      "displayName": "Related tasks",
      "intent": "custom",
      "description": "Shows tasks in the To do app that are related to this file.",
      "handlers": [
        {
          "type": "openPage",
          "supportedObjects": {
            "file": {
              "extensions": ["xlsx", "doc", "docx", "pdf", "pptx", "ppt"]
            }
          },
          "pageInfo": {
            "pageId": "index",
          }
        }
      ]
    }
  ]
}

For more information, see public developer preview app manifest schema.

When a user selects an action to open a personal tab and view related tasks in an app based on the selected file. The app uses the "intent": "custom" property to identify the file type, such as .xlsx or doc and the "type": "openPage" handler opens the app and navigates to the pageId.

Retrieve Action information through context object

Build the handler to receive the Action information through the context object to create a seamless user experience for performing users specific tasks using the Teams JavaScript library (TeamsJS).

When a user selects Add option from the app's context menu, a personal tab opens with the help of the openPage property in the app manifest. Your app can access contextual information about the invoked Action from the actionInfo property of the app.getContext() context object.

The ActionInfo interface helps to enable your app to determine when a user opens a tab from an Action and the content that initiated the Action.

app.getContext().then((context) => {
    const actionInfo = context.actionInfo;
    if (actionInfo) {
        // App was launched using an action    
    } 
    if (actionInfo && actionInfo.actionId == 'myActionId1') {
        // Handle specific action    
    } 
    if (actionInfo) {
        if (actionInfo.actionObject.type == app.ActionObjectType.M365Content) {
            const itemId = actionInfo.actionObjects[0].itemId;
            // Get the requested content from Mirosoft Graph by item id:
        } 
    }
})
  Name Description
  actionObjects Array of corresponding action objects.
  itemId The app receives the ID as the content and uses it to query the Microsoft Graph.
  actionInfo The context object contains an object that holds all the information related to the current action.

Access content through Graph API

After obtaining the itemId of the triggering content, you can use the Graph API to read or modify the content, facilitating task completion for your users.

HTTP request

GET /users/{user-id}/drive/items/{item-id}

Sideload your app using Teams Toolkit

After you update the app package with the required information, you're ready to test your Actions in the Teams Toolkit. To initiate debugging, select the F5 key.

The screenshot shows actions in debug.

A browser window opens with Microsoft 365 home page and your app is available under Apps.

You can now preview your Actions in the Microsoft 365 home page, right-click a file that is supported by your Actions. Actions appear in the context menu, for example Add todo task.

The screenshot shows the actions in context menu.

Preinstall Actions for users in Microsoft 365 Admin Center

Note

Actions are available in public developer preview, ensure that you enable targeted release to the users to experience Actions in Microsoft 365 app.

To use an app with Actions in your tenant, an admin must upload the app package with devPreview manifest to the Microsoft Admin Center as follows:

  1. Go to Microsoft Admin Center.

  2. Select Settings > Integrated Apps > Upload custom apps.

Follow instructions to preinstall your app for entire organization or user groups within your tenant.

Code sample

Sample name Description Node.js
Actions in Microsoft 365 apps This sample code describes the actions implemented in Microsoft 365 apps, specifically focusing on two actions within a To Do app. View

Next step

See also

Actions in Microsoft 365