I am coding against the Microsoft Graph CSharp SDK
and have implemented a Daemon or Server Application to Web API. The daemon calls a web API, built on OAuth 2.0 client credentials grant type.
I am then creating calls to access specific user's DriveItem
Stream
.
My Request call:
var driveItemSteam = await graphServiceClient.Drives["test@test.onmicrosoft.com"].Items["01MPVS7H3LTYVLJEAP5ZG2XOZ5EGHI5I4R"].Content.Request().GetAsync();
My question is if there is a way for a daemon application to access a user's Content
. Is there something that I am missing from my request call to allow an App
level permission to access a specific user's OneDrive for business DriveItem
?