SharePoint.Activities package had an activity now the package is not supported in the upgraded studio, That’s not a solution now. I’m using Graph API Credentials to connect sharepoint.tried creating Custom V.B code but no luck, Please share alternatives for this?
@Anil_G No luck how API can download file it always gives response in the text format right? CRUD(Create, Update, Read, Delete)
Api can give file responses as wel which will be url also which can be opened…we can get content stream as well they can be converted…
Cheers
Insofar as I know, the MS Graph API does not have an endpoint to download SharePoint List Item attachments, it is one of the things not up to feature parity with the old SharePoint API. You can download files from a document library or OneDrive with the MS Graph API.
Typically files returned by an API are some sort of stream content or chunks of bytes to support resuming a download or upload or they are represented as a base64 encoded string. You can really convert any file into and from a base64 string very easily with only a few method calls in .NET.