Which SDK or API should be used to display and upload files to sharepoint Office 365 document libraries

What is the best way (and in the near future) to list, upload, and upload files in a document library in Office 365 Sharepoint? I am looking for a .NET SDK.

It seems that there is not much support documentation that is dedicated to this topic.

There is OneDrive SDK, Office 365 Sharepoint SDK and Graph API, but I can not find good examples. I prefer to use the SDK rather than regular REST calls, because I want to use ADAL libraries in .NET to authenticate again with Azure Active Directory.

It would be helpful to get any advice or directions in the right direction.

0
source share
1 answer

OneDrive SDK for C #.

I just made a list of the elements of a SharePoint site and uploading files using the OneDrive SDK for Python , and there is a OneDrive SDK for C # that should cover the same features. Just make sure you use the service discovery correctly and select the SharePoint RootSite service.

You can learn more about my adventures that achieve this (including some mistakes) here .

0
source

All Articles