无法连接到Twilio中的视频室

时间:2020-01-18 12:45:05

标签: node.js reactjs twilio

我正在用React + Twilio API构建一个Web调用应用程序。但是它无法发布API,并且由于令牌错误而无法连接到视频室。

错误:

POST https://ecs.us1.twilio.com/v2/Configuration 403

Unable to connect to Room: The authorization with Token failed

我已经按照如下方式设置了Twilio帐户:

1)获取Twilio凭据和API密钥 credentials

enter image description here

2)这次我使用 TEST凭据。然后将ACCOUNT_SIDAPI_KEY_SIDAPI_KEY_SECRET设置为.env

REACT_APP_TWILIO_ACCOUNT_SID = 'ACXXXXXXXXXXXXXX'
REACT_APP_TWILIO_AUTH_TOKEN = 'XXXXXXXXXXXXXXXXX'
REACT_APP_TWILIO_API_KEY_SID = 'SKXXXXXXXXXXX'
REACT_APP_TWILIO_API_KEY_SECRET = 'XXXXXXXXXXXXXXXXX'

3)使用API​​文档设置twilio配置

import twilio from "twilio";

const AccessToken = twilio.jwt.AccessToken;
const VideoGrant = AccessToken.VideoGrant;

// Substitute your Twilio AccountSid and ApiKey details
const ACCOUNT_SID = process.env.REACT_APP_TWILIO_ACCOUNT_SID;
const API_KEY_SID = process.env.REACT_APP_TWILIO_API_KEY_SID;
const API_KEY_SECRET = process.env.REACT_APP_TWILIO_API_KEY_SECRET;

// Create an Access Token
const accessToken = new AccessToken(ACCOUNT_SID, API_KEY_SID, API_KEY_SECRET);

// Set the Identity of this token
accessToken.identity = "my-user";

// Grant access to Video
const grant = new VideoGrant();
grant.room = "cool room";
accessToken.addGrant(grant);

// Serialize the token as a JWT
const twilioToken = accessToken.toJwt();

export default twilioToken;

4)打电话给房间

    connect(twilioToken, { name: "my-new-room" }).then(
      room => {
        console.log(`Successfully joined a Room: ${room}`);
        room.on("participantConnected", participant => {
          console.log(`A remote Participant connected: ${participant}`);
        });
      },
      error => {
        console.error(`Unable to connect to Room: ${error.message}`);
      }
    );

但是失败了。怎么了?

1 个答案:

答案 0 :(得分:1)

通过真实帐户通过。我不知道为什么,但是测试帐户无法正常工作。