using System.Collections.Generic;
using System.Globalization;
public static void Main()
var authDataClaim = new Dictionary<string, object>
{ "apiKey", "YWUzYzQ4NzJjYmFmNzA4MGQwNmMwNDY1YzIyMDUyOWY="},
var rolloutClaim = new Dictionary<string, object>
{ "authData", authDataClaim},
DateTime currentTime = DateTime.UtcNow;
DateTime tenMinsLater = currentTime.AddMinutes(10);
Int32 unixTimestampIat = (int)currentTime.Subtract(new DateTime(1970, 1, 1)).TotalSeconds;
Int32 unixTimestampExp = (int)tenMinsLater.Subtract(new DateTime(1970, 1, 1)).TotalSeconds;
var payload = new Dictionary<string, object>
{ "iss", "jpat26Ayc1AbiuQt-I7raadiodecPjJZ" },
{ "sub", "rollout-test" },
{ "iat", unixTimestampIat },
{ "exp", unixTimestampExp },
{ "rollouthq.com", rolloutClaim},
IJwtAlgorithm algorithm = new HMACSHA512Algorithm();
IJsonSerializer serializer = new JsonNetSerializer();
IBase64UrlEncoder urlEncoder = new JwtBase64UrlEncoder();
IJwtEncoder encoder = new JwtEncoder(algorithm, serializer, urlEncoder);
var token = encoder.Encode(payload, "3LejIbPzUs-rGVteinLJNZO0uvr_ymNbHOOtJ7hmq7JvOEsHwfEGpP3-hXEHNn7l");
Console.WriteLine(token);