我使用REST通过SharePoint 2013 App访问列表,下面是代码段:
var executor = new SP.RequestExecutor(appweburl);
executor.executeAsync(
{
url: appweburl +
"/_api/SP.AppContextSite(@hostweburl)/Web/lists/getbytitle('SomeListName')/items?" +
"@hostweburl='" +
hostweburl + "'",
method: "GET",
headers: { "Accept": "application/json; odata=verbose" },
success: successHandler,
error: errorHandler
}
);
当我调试它时,从URL标记获取完整的URL,但是当我要通过浏览器访问它时,它会显示“抱歉,此网站尚未与您共享”的消息。 为什么在我完全控制网站集时会发生这种情况。
我们必须在APP中进行任何配置吗?
感谢。