在Android版Outlook中,loadCustomPropertiesAsync方法超时

时间:2019-04-01 13:58:08

标签: outlook office-js outlook-web-addins

我有一个Outlook加载项,尝试使用loadCustomPropertiesAsync [1]来获取与邮件项一起存储的自定义属性:

  Office.context.mailbox.item.loadCustomPropertiesAsync(function(asyncResult){
    var customProps = asyncResult.value;
    console.log(customProps.get("some.prop"));
})

当我从Android版Outlook(v3.0.40)应用程序访问外接程序时,上面的代码片段似乎超时,但是在iOS,Firefox和Chrome上运行良好(在Windows 10和Mac上都经过测试)。 / p>

这是一个错误吗?

[1] https://docs.microsoft.com/en-us/office/dev/add-ins/reference/objectmodel/requirement-set-1.3/office.context.mailbox.item

0 个答案:

没有答案