Kobi Meirson

Results 3 comments of Kobi Meirson

Hi @orlylev, thanks for your contribution! According to [Alexa's documents](https://developer.amazon.com/docs/custom-skills/understand-name-free-interaction-for-custom-skills.html) it seems like the `CanFulfillIntentRequest` is called along with an intent name and slot, hence a different function should be...

maybe calling to `.pre()` and resolving the request will help? ```js app.pre(function(request, response) { if (request.data && request.data.source === 'aws.events') { console.log('ping!'); response.resolved = true; // will skip the next...

The problem is that your `TestViewController` isn't retained - this library only retains the views of the view controllers, and not the view controllers themselves. If you add `var ctr3...