Hi @russellgove ,
According to my research and testing, please do some troubleshooting, perhaps it is caused by an expired or timeout t of Authorization, try to re-generate access_token
. And then use the following Rest API to get SharePoint list items:
https://xxx.sharepoint.com/sites/sitename/_api/web/lists/getbytitle('a test')/items
If you still get the error, try to generate the access_token
by following the steps in this document, and then connect to SharePoint:
https://global-sharepoint.com/sharepoint-online/in-4-steps-access-sharepoint-online-data-using-postman-tool/
{
// _spPageContextInfo.webAbsoluteUrl - will give absolute URL of the site where you are running the code.
// You can replace this with other site URL where you want to apply the function
// Optionally you can append "$top=10" to restrict the results to 'n' number of rows only.
// e.g. - url: _spPageContextInfo.webAbsoluteUrl + "/_api/web/lists/getByTitle('List Name')/items$top=10",
// "$select" can be used, if only a defined colmns need to be returned in result set
url: _spPageContextInfo.webAbsoluteUrl + "/_api/web/lists/getByTitle('List Name')/items?$select=Title,LinkFilename",
type: "GET",
headers:
{
// Accept header: Specifies the format for response data from the server.
"Accept": "application/json;odata=verbose"
},
success: function (data, status, xhr) {
var dataresults = data.d.results;
for (var i = 0; i < dataresults.length; i++) {
alert(dataresults[i]["LinkFilename"]);
}
},
error: function (xhr, status, error) {
console.log("Failed");
}
}
More information for reference: Get All Items in SharePoint using REST API
Hope it can help you. Thanks for your understanding.
Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make sure that you completely understand the risk before retrieving any suggestions from the above link.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.