/identity-cs

Tanker Identity SDK for .Net

Primary LanguageC#Apache License 2.0Apache-2.0

Tanker logo

Build Coverage

Identity

Identity generation using .Net for the Tanker SDK.

Installation

You can install it from NuGet.

Usage

using System;

namespace App
{
    class Program
    {
        static void Main(string[] args)
        {
            var aliceIdentity = Tanker.Identity.CreateIdentity(@"<your app id>", @"<your app secret>", @"<some user Id>");
            Console.WriteLine(aliceIdentity);
            Console.ReadKey(true);
        }
    }
}

Going further

Read more about Identities in the Tanker documentation.