Outlook Mac App身份验证令牌不匹配

时间:2018-02-01 11:39:42

标签: javascript office-js office-addins outlook-web-addins outlook-for-mac

我正在为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,我从上面的API中获得401

此外,我在Outlook 2016 for Mac上调用auth_token获得的getCallbackTokenAsync与我在浏览器中获得的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>

我的清单中的值是:

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

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

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

max_execution_time = 60--or whatever time you wish

如何让outlook_mac_app返回令牌的v2?

1 个答案:

答案 0 :(得分:1)

我无法评论,所以将此作为答案发布。

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