Twilio Praogramable голосовой ответ несанкционированного - PullRequest
0 голосов
/ 08 января 2019

Я пытаюсь настроить учетную запись twilio и добавил функцию с кодом ниже:

exports.handler = function(context, event, callback) {
    //let twiml = new Twilio.twiml.VoiceResponse();
    //callback(null, twiml);
    callback(null,{data:context});
    //Start Rahul Mishra here
       const AccessToken = Twilio.jwt.AccessToken;
       const VoiceGrant = AccessToken.VoiceGrant;

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

       const voiceGrant = new VoiceGrant({
           room:'DailyStandup'
       });
       token.addGrant(voiceGrant);

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

};

Вот ответ:

Unauthorized - you do not have permission to perform this request

Пожалуйста, дайте мне знать, что я делаю неправильно ... Спасибо!

...