Twilio Video - “Failed to connect to room with error: SIP error 403”

前端 未结 1 720
情歌与酒
情歌与酒 2021-01-14 09:33

I get this error “Failed to connect to room with error: SIP error 403”, when I try to make a call from one iOS client to another while using twilio video sdk for swift.

1条回答
  •  猫巷女王i
    2021-01-14 10:00

    If I'm correct in assuming these values are not placeholders for the real ones (it's a 403 error), you need to add your API credentials to your NodeJS script...

    var ACCOUNT_SID = 'accountSid';
    var API_KEY_SID = 'apiKeySid';
    var API_KEY_SECRET = 'apiKeySecret';
    var TWILIO_CONFIGURATION_SID = 'twilioConfigurationSid';
    

    0 讨论(0)
提交回复
热议问题