我有一个后台应用程序,需要阅读用户的Outlook消息。
以该用户身份登录后,我在filter bindSearch function上创建了一个应用程序。
我设置了以下权限:
https://apps.dev.microsoft.com
然后我尝试创建订阅:
其中var $filter = $('.single-filter-input');
$('.all-tables').each(function(table) {
// table - table DOM element (or jQuery object) of table.
// $el - jQuery object of one or more input (search) elements to bind.
// false - boolean flag to force a new search.
$.tablesorter.filter.bindSearch(table, $filter, false);
});
属性中的用户名与在上创建应用程序时登录到系统的用户名相同
但我知道
“操作:创建;例外:[状态码:未经授权;原因:未找到适用的用户上下文声明。]”,
怎么了?