Validation StopIntent


#1

hi
i dont know why, when i tell stop podcast, it trigger an error "there have issue with answer skill "

   SemaineIntent() {
    this.$alexaSkill.$audioPlayer
        .setOffsetInMilliseconds(0)
        .setTitle('fgfg')
        .setSubtitle(semaineTitle)
        .addArtwork('https://www.somewhere.com/image.png')
        .addBackgroundImage('https://www.somewhere.com/background.jpg')
        // The above method calls need to be before play()
        .play(semaineAudio, 'token')
        .tell(semaineTitle);

},
PauseIntent() {
    this.$alexaSkill.$audioPlayer.stop();

    // Save offset to database
    this.$user.$data.offset = this.$alexaSkill.$audioPlayer.getOffsetInMilliseconds();
    this.tell('d\'accord !');
},
ResumeIntent() {
    this.$alexaSkill.$audioPlayer
        .setOffsetInMilliseconds(this.$user.$data.offset)
        .play(WeekendAudio, 'token')
        .tell('je reprends !');
},
CancelIntent() {
    this.$alexaSkill.$audioPlayer.stop();
},

#2

Mate as I told you yesterday: Take a look into the (cloudwatch or whatever you are deploying at) logs

Logs are always you best friend. Btw this error will always be desribed in the logs


#3

When in my an audit by alexa, it return very much log.
but log are not set when we use Jovo webhook.


#4

You can see the logs in your terminal/command line.