I tried to download a file with Grpah API.
Tested with API browser, https://graph.microsoft.io/en-us/graph-explorer#
Ran following request, got list of file/folder item information,
https://graph.microsoft.com/v1.0/me/drive/root/children
And for one of the file item, I was able to get item information.
https://graph.microsoft.com/beta/me/drive/items/_an_item_id
But following returns HTTP 404.
https://graph.microsoft.com/beta/me/drive/items/_an_item_id/content
What will be the cause for this symptom?
/content
request itself404
, or did it redirect you (302
) to a URL that then returned a404
? – Brad