I have a sharepoint site hosted at:
https://xxxxx.sharepoint.com, which has a subsite named abc
when I type in https://xxxx.sharepoint.com/abc in the browser, it redirects to the welcome page of the subsite automatically, which is https://xxxxx.sharepoint.com/abc/Pages/Home.aspx.
But when I try to access this subsite using postman, it does not redirects to the welcome page by itself, even if I try to access the welcome page like this:
https://graph.microsoft.com/v1.0/sites/xxxx.sharepoint.com/abc/Pages/Home.aspx,
it gives me the error:
{
"error": {
"code": "BadRequest",
"message": "Resource not found for the segment 'abc'.",
"innerError": {
"request-id": "59ba6f24-2411-444c-b1f8-247d874f6543",
"date": "2020-02-28T06:19:11"
}
}
}
How to let postman redirect rest WS requests directly to the Hompage of the sharepoint site? and be able to see its html response?