Reputation: 33
I want to download some video content from my organization SharePoint. I have followed the below steps.
I want to know how can i reach my video content after that and how can i download it or play it.
Upvotes: 1
Views: 126
Reputation: 16458
You should refer to Download the contents of a DriveItem to get the content of the file stored in Sharepoint.
GET https://graph.microsoft.com/v1.0/sites/{siteId}/drive/items/{item-id}/content
The response will contain a pre-authenticated download URL for the file. Just use this url to download it.
Upvotes: 1