5

我正在为 Outlook 实现一个加载项,加载项获取一个附件并将其发送到我的服务器进行处理。它在https://outlook.office.com上完美运行,但无法运行 Outlook 2016 for Mac。

这是我试图访问的 API:

var getMessageUrl =Office.context.mailbox.restUrl + '/v2.0/me/messages/' +
    {messageID} + "/attachments/" + {attachmentID};

var attachmentID = Office.context.mailbox.item.attachments[0].id;
var messageID = getItemRestId();

$.ajax({
    url: getMessageUrl,
    dataType: 'json',
    headers: {
        'Authorization': 'Bearer ' + outlookToken
    }
}).done(function 1(response) {
    //upload the blob to my server
}).fail(function (error) {
    //call authorise to get a new token
});

function getItemRestId() {
    if (Office.context.mailbox.diagnostics.hostName === 'OutlookIOS') {
        // itemId is already REST-formatted
        return Office.context.mailbox.item.itemId;
    } else {
        // Convert to an item ID for API v2.0
        return Office.context.mailbox.convertToRestId(
            Office.context.mailbox.item.itemId,
            Office.MailboxEnums.RestVersion.v2_0
        );
    }
}

使用 Outlook 2016 for Mac,我401从上面的 API 中得到了一个。

此外,auth_token我通过调用getCallbackTokenAsyncOutlook 2016 for Mac 获得的结果与我在浏览器中获得的结果不同:

Office.context.mailbox.getCallbackTokenAsync({isRest: true}, function (result) {
    if (result.status === "succeeded") {
        //save result.value
    } 
    else {
        //error condition
    }
});

我的清单中的值是:

<Set Name="MailBox" MinVersion="1.3"/>
<Permissions>ReadWriteMailbox</Permissions>

有人可以指出我在这里做错了什么吗?

更新 根据 Jason 的建议,我检查了我在jwt.io上收到 的令牌。令牌的版本在浏览器和 mac 应用程序上是不同的。

On the Browser: "ver": "Exchange.Callback.V2" On the Mac App: "ver": "Exchange.Callback.V1" 

如何让 outlook_mac_app 返回令牌的 v2?

4

1 回答 1

1

我无法发表评论,因此将其发布为答案。

我在 Outlook for Mac 2016 中为附件点击 403,不确定它们是否相关,但您可以在此处查看它https://github.com/OfficeDev/outlook-add-in-command-demo/issues/ 30

于 2018-02-01T18:52:38.473 回答