Twilio евангелист здесь.
Эта страница содержит код для генерации токенов доступа в C #:
using System;
using Twilio.Jwt.AccessToken;
class Example
{
static void Main(string[] args)
{
// Substitute your Twilio AccountSid and ApiKey details
var AccountSid = "accountSid";
var ApiKeySid = "apiKeySid;
var ApiKeySecret = "apiKeySecret";
var identity = "example-user";
// Create a video grant for the token
var grant = new VideoGrant();
grant.Room = "cool room";
var grants = new HashSet { grant };
// Create an Access Token generator
var token = new Token(accountSid, apiKey, apiSecret, identity: identity, grants: grants);
// Serialize the token as a JWT
Console.WriteLine(token.ToJwt());
}
}
Существует также Github-репо с полным примером токен-сервера в C #.
Надеюсь, это поможет.