An Azure service for ingesting, preparing, and transforming data at scale.
Prashant Vidhate hello,
to move photos and videos from SharePoint to Azure Blob using ADF u just need a normal Copy activity. On the source side use the SharePoint Online linked service, usually with OAuth2 using an app registration in Entra ID. On the sink side use an Azure Blob Storage linked service.
For permissions create an app registration in Entra ID and grant it Microsoft Graph or SharePoint API permissions like Sites.Read.All or Sites.ReadWrite.All depending on what u need, then grant admin consent. In SharePoint itself the app must have access to the specific site or document library where the files live.
In ADF create a SharePoint Online dataset pointing to the document library or folder, and a Blob dataset pointing to the container. Then configure the Copy activity from SharePoint dataset to Blob dataset.
So basically u need one Copy activity, a SharePoint Online linked service with an Entra app registration, and a Blob Storage linked service with either key, SAS or managed identity depending on ur setup.
rgds,
Alex