Com.RusticiSoftware.Cloud.V2 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Com.RusticiSoftware.Cloud.V2 --version 1.0.0
NuGet\Install-Package Com.RusticiSoftware.Cloud.V2 -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Com.RusticiSoftware.Cloud.V2" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Com.RusticiSoftware.Cloud.V2 --version 1.0.0
#r "nuget: Com.RusticiSoftware.Cloud.V2, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Com.RusticiSoftware.Cloud.V2 as a Cake Addin
#addin nuget:?package=Com.RusticiSoftware.Cloud.V2&version=1.0.0

// Install Com.RusticiSoftware.Cloud.V2 as a Cake Tool
#tool nuget:?package=Com.RusticiSoftware.Cloud.V2&version=1.0.0

Com.RusticiSoftware.Cloud.V2 - the C# library for the SCORM Cloud Rest API

REST API used for SCORM Cloud integrations.

This C# SDK is automatically generated by the Swagger Codegen project:

  • API version: 2.0
  • SDK version: 1.0.0
  • Build package: io.swagger.codegen.languages.CSharpClientCodegen

<a name="frameworks-supported"></a>

Frameworks supported

  • .NET 4.0 or later
  • Windows Phone 7.1 (Mango)

<a name="dependencies"></a>

Dependencies

The DLLs included in the package may not be the latest version. We recommend using NuGet to obtain the latest version of the packages:

Install-Package RestSharp
Install-Package Newtonsoft.Json
Install-Package JsonSubTypes

NOTE: RestSharp versions greater than 105.1.0 have a bug which causes file uploads to fail. See RestSharp#742

<a name="installation"></a>

Installation

Run the following command to generate the DLL

  • [Mac/Linux] /bin/sh build.sh
  • [Windows] build.bat

Then include the DLL (under the bin folder) in the C# project, and use the namespaces:

using Com.RusticiSoftware.Cloud.V2.Api;
using Com.RusticiSoftware.Cloud.V2.Client;
using Com.RusticiSoftware.Cloud.V2.Model;

<a name="packaging"></a>

Packaging

A .nuspec is included with the project. You can follow the Nuget quickstart to create and publish packages.

This .nuspec uses placeholders from the .csproj, so build the .csproj directly:

nuget pack -Build -OutputDirectory out Com.RusticiSoftware.Cloud.V2.csproj

Then, publish to a local feed or other host and consume the new package via Nuget as usual.

<a name="getting-started"></a>

Getting Started

using System;
using Com.RusticiSoftware.Cloud.V2.Api;
using Com.RusticiSoftware.Cloud.V2.Client;
using Com.RusticiSoftware.Cloud.V2.Model;
using System.Collections.Generic;

namespace Example
{
    public class Example
    {
        public void main()
        {
            // Configure HTTP basic authorization: APP_NORMAL
            Configuration.Default.Username = "SCORM_CLOUD_APP_ID";
            Configuration.Default.Password = "SECRET_KEY_FOR_APP_ID";

            // Then (optionally) further authenticate via Oauth2 token access
            ApplicationManagementApi applicationManagementApi = new ApplicationManagementApi();

            var permissions = new PermissionsSchema { Scopes = new List<string> { "read:registration" } };
            var expiry = DateTime.Now.AddMinutes(30);

            var tokenRequest = new TokenRequestSchema(permissions, expiry);
            StringResultSchema tokenResult = applicationManagementApi.CreateToken(tokenRequest);
            Configuration.Default.AccessToken = tokenResult.Result;

            // this call will now use Oauth2 with the "read:registration" scope
            // if configured.  otherwise the basic auth credentials will be used
            var apiInstance = new RegistrationApi();
            RegistrationListSchema regList = apiInstance.GetRegistrations();

            Console.WriteLine(regList);
        }
    }
}
Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
4.0.0 538 2/9/2024
3.0.2 16,050 4/25/2023
3.0.1 5,772 2/24/2023
3.0.0 23,928 11/10/2022
2.1.0 12,263 9/30/2022
2.0.1 18,051 11/15/2021
1.1.1 13,083 3/31/2020
1.1.0 492 3/20/2020
1.0.1 508 3/6/2020
1.0.0 21,548 10/8/2019