0

My Azure Functions app shall use Excel input/output bindings. The files are stored on a specific sharepoint document library. I wish to use application permissions, not user-delegated ones.

In the graph documentation there is this

Files.ReadWrite.All

Which is too broad for my taste. Can this be narrowed down to only specific folders in a specific sharepoint?

Cheers

Joy Wang
  • 39,905
  • 3
  • 30
  • 54
baouss
  • 1,312
  • 1
  • 22
  • 52

1 Answers1

1

Can this be narrowed down to only specific folders in a specific sharepoint?

No, it can't.

Microsoft Graph does not support this currently, the Files.ReadWrite.All application permission is needed in this case.

Joy Wang
  • 39,905
  • 3
  • 30
  • 54