【发布时间】:2016-12-21 09:20:54
【问题描述】:
我开发了一个使用 OfficeJS API 并希望在应用程序中实现 OAuth 的 Outlook 插件,也
API Documnetation 说 Outlook 2016(Desktop) 支持要求集 1.1、1.2、1.3 和 1.4,但在我的情况下,它保持沉默甚至不会引发错误。
在运行 dialog api sample for word add-in 我得到
JavaScript 运行时错误: Unable to get property 'displayDialogAsync' of undefined or null reference.
我正在使用 Microsoft Office Professional Plus 2016。
我编写的用于启动对话框的代码如下:
dialogTest() {
const url = "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?response_type=....";
Office.context.ui.displayDialogAsync(url, { width: 15, height: 27, requireHTTPS: true }, function (asyncResult) {
if (asyncResult.status !== Office.AsyncResultStatus.Succeeded) {
// TODO: Handle error.
return;
}
// Get the dialog and register event handlers.
var dialog = asyncResult.value;
dialog.addEventHandler(Microsoft.Office.WebExtension.EventType.DialogMessageReceived, function (asyncResult) {
if (asyncResult.type !== Microsoft.Office.WebExtension.EventType.DialogMessageReceived) {
// TODO: Handle unknown message.
return;
}
// Parse the message.
var data = JSON.parse(asyncResult.message);
console.log('Hello #Office365Dev', data.name);
// TODO: Do something with the data.
// We got our data, time to close the dialog.
dialog.close();
});
});
}
【问题讨论】:
标签: office-js office-addins outlook-web-addins