如何仅授予 Azure Functions 特定的图形权限(一个共享点库)
How to grant Azure Functions only specific Graph permissions (one sharepoint library)
我的 Azure Functions 应用程序应使用 Excel input/output 绑定。这些文件存储在特定的共享点文档库中。我希望使用应用程序权限,而不是用户委托的权限。
图表文档中有这个
这对我来说太宽泛了。这可以缩小到特定共享点中的特定文件夹吗?
干杯
Can this be narrowed down to only specific folders in a specific sharepoint?
不,不能。
Microsoft Graph 目前不支持此功能,在这种情况下需要 Files.ReadWrite.All
应用程序权限。
我的 Azure Functions 应用程序应使用 Excel input/output 绑定。这些文件存储在特定的共享点文档库中。我希望使用应用程序权限,而不是用户委托的权限。
图表文档中有这个
这对我来说太宽泛了。这可以缩小到特定共享点中的特定文件夹吗?
干杯
Can this be narrowed down to only specific folders in a specific sharepoint?
不,不能。
Microsoft Graph 目前不支持此功能,在这种情况下需要 Files.ReadWrite.All
应用程序权限。