Twilio-VideoChat无法连接?

时间:2018-09-19 14:06:02

标签: ios swift twilio

hiam是twilio的新手,并对它的工作方式很感兴趣,因此我从github页面下载了快速入门文件,并按照所有说明进行操作,我已经用api键设置了所有内容,而all和iam则获取了令牌键。在我的应用程序中,但是当我按connect进入房间时,我得到一个错误,提示failed to connect to room with error,并且iam使用twilio控制台函数通过简单的代码片段`exports.handler = function(context,event,callback ){

const AccessToken = Twilio.jwt.AccessToken;
const VideoGrant = AccessToken.VideoGrant;

const token = new AccessToken(context.ACCOUNT_SID, context.API_KEY, context.API_SECRET, 3600);
token.identity = event.identity;

const videoGrant = new VideoGrant({room: '960710abcde'});

token.addGrant(videoGrant);

callback(null, {token: token.toJwt() });

};

上面的代码我用来获取令牌密钥来访问名为960710abcde的房间,但是仍然出现此错误,并且我在xcode consol中打印了令牌,所以我要获取令牌... iam使用xcode语言很快

提前谢谢。

0 个答案:

没有答案