What is the best method to get SharePoint list items from Office Web Addin using the credentials of the logon user?
We have migrated to Office 365, I am not sure whether i must authenticate on AD or Office 365, the Office Addin App will be deployed on SharePoint on Premise
I have tried rest services but I am not sure of how to pass the user token, for authentication.
function GetSharePointListItems() {
$.ajax({
url: "weburl/_api/web/lists/getbytitle('listname')/Items?$select=Title,ParagraphText&$filter=ParagraphText isnotnull ",
type: "GET",
Authorization: {"Bearer " + accessToken},
headers: { "accept": "application/json;odata=verbose" },
success: function (data) {
if (data.d.results) {
OnSuccessSharePointData();
}
},
error: function (xhr) {
alert(xhr.status + ': ' + xhr.statusText);
OnErrorSharePointData();
}
});
any ideas