是否可以仅在IIS上运行Twilio Video并在C#上编写?

时间:2018-05-11 17:07:49

标签: twilio videochat twilio-programmable-chat

在所有示例中,我看到仅在node.js上使用Twilio VIdeo作为Web服务器。

是否可以在IIS上运行它,并在C#上编写服务器和客户端部分?

1 个答案:

答案 0 :(得分:1)

Twilio传道者在这里。

page包含用于在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());
  }
}

在C#中还有一个Github repo带有完整令牌服务器示例。

希望有所帮助。