我正在尝试一些简单的事情 - 从 SharePoint 2013 列表中检索列表信息。但是,在处理 jQuery Ajax 时,我的访问被拒绝。我尝试使用 headers 对象和 beforeSend 函数设置标题,但没有成功。这是我的 jQuery.Ajax:
$.ajax({
headers: { // also tried with Authentication
"Authorization": someBasicCryptedCred,
"Accept": "application/json; odata=verbose"
},
url: "http://spSiteCollection/_api/web/lists/getbytitle('MyList')/items",
type: "GET",
success: SuccessProcess,
error: ErrorProcess
});
我的应用程序是一个简单的 MVC 移动应用程序
我正在关注这些文档(以及 MSDN 中的其他一些文档,但不能发布超过 2 个链接):
http://msdn.microsoft.com/en-us/library/jj870858.aspx http://msdn.microsoft.com/en-us/library/jj163228.aspx