I need to copy the data of an Excel file on a Sharepoint to an Azure SQL DB. This needs to be done in Azure Data Factory. I found the solution below: https://learn.microsoft.com/en-gb/azure/data-factory/connector-sharepoint-online-list?tabs=data-factory#copy-file-from-sharepoint-online While this seems to work, the disadvantage is that the app registration needs to get the Sharepoint permission 'Sites.Read.All'. This is why I was looking for doing this with MS Graph, as MS Graph allows the permission 'Sites.Selected'. This is an important one, as I want to avoid giving permission to access the whole Sharepoint (preferably I would give only permission to access one folder, but I have not found this solution at all). However, I did not find any way to do this with MS Graph in ADF.
Anyone with some tips on how to do this? A solution with an Azure Functions or Logic app is not possible/allowed in our current architecture.
Thanks in advance.