简体   繁体   中英

Call Microsoft Graph API from Actionable Message

I'm trying to send an email using Microsoft Graph API from an action in an actionable message. (So send an email from a button in an email) However I'm always receiving a 401 Error. I tested the graph API in normal setting and the Auth token is valid, but here it seems to work differently.

Is it possible at all to achieve this?

{
    "$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
    "type": "AdaptiveCard",
    "version": "1.0",
    "body": [
        {
            "type": "ActionSet",
            "id": "f8d6ddb5-ed34-e8e4-59ec-73084e885bbb",
            "actions": [
                {
                    "type": "Action.Http",
                    "id": "6a807e29-1023-ed90-713a-94209c847c7b",
                    "title": "Envoyer",
                    "url": "https://graph.microsoft.com/v1.0/me/sendMail",
                    "style": "positive",
                    "isPrimary": true,
                    "method": "POST",
                    "headers": [
                        {
                            "name": "Authorization",
                            "value": "Bearer ..."
                        },
                        {
                            "name": "Content-Type",
                            "value": "application/json"
                        }
                    ],
                    "body": "..."
                }
            ]
        }
    ],
    "padding": "None",
    "@type": "AdaptiveCard",
    "@context": "http://schema.org/extensions"
}

(Edit) This is how I get the token:

Providers.globalProvider = new TeamsProvider ({
    clientId: {my client id},
    authPopupUrl: '/auth.html'
});
const token = await Providers.globalProvider.getAccessToken({scopes: ['Mail.Send', 'Mail.ReadWrite']});

Regardless of how you generate the Adaptive Card, you cannot use the Microsoft Graph API from the context of Outlook using Outlook Actionable Messages: https://github.com/microsoft/AdaptiveCards/issues/5674

Currently teams does not support http card action. Please go through this documentation for supported card actions.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM