Info
Version: | 1.0.0 |
Author(s): | Matt Bond |
Last Update: | Friday, April 10, 2020 |
.NET Fiddle: | Create the first Fiddle |
NuGet Url: | https://www.nuget.org/packages/SPOnlineRESTClientCore |
Install
Install-Package SPOnlineRESTClientCore
dotnet add package SPOnlineRESTClientCore
paket add SPOnlineRESTClientCore
SPOnlineRESTClientCore Download (Unzip the "nupkg" after downloading)
Dependencies
- Microsoft.Extensions.Logging(>= 3.1.3)
Tags
Offers only three methods:
Authenticate - providing username, password and endpoint, which you want to call your REST request upon
ExecuteGetRESTCall - execute supplied REST GET call (part of url starting /_api/)
ExecutePostRESTCall - execute supplied REST GET call (part of url starting /_api/) with Json body
Works well with Azure Http triggered function, which are bound to List asynchronous event receiver as Remote event receiver.
Whole functionality is based on this article https://paulryan.com.au/2014/spo-remote-authentication-rest/.
Therefore Paul Ryan deserves big thanks for this.