Questions tagged [alexa-sdk-nodejs]

Questions tagged with alexa-sdk-nodejs are concerned with development of alexa-skills using the alexa-sdk for nodejs

The Alexa-Skills-Kit-SDK for nodejs has been publish on github https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs

30 questions
1
vote
1 answer

AWS Alexa skills kit SDK for node.js: Error when deploying

Both my model and skill.json are up to date when I check ask diff, I made some changes to the lambda function in index.js, and when I tried to ask deploy, I got this error message: [Error]: Failed to resolve the Lambda deploy state for…
1
vote
1 answer

Alexa SDK V2 StateHandler - Multiple intents sharing the same slot value

I am writing an Alexa skill that captures age from one intent and captures weight from different intent. and Basically, these two are of type number. When I am trying to enter a number for weight, it is being captured in the first Intent's slot.…
vikram eklare
  • 800
  • 7
  • 25
1
vote
2 answers

Amazon Alexa Skill Lambda Node JS - Http GET not working

I'm wondering if someone can help as I'm beating my head against a wall with this. I've been looking for answers for days and tried various things and below is the closest I've got. Basically I'm building an Alexa skill for personal use in my home…
1
vote
1 answer

Alexa Skill is currently disabled in development stage when Simulate from Ask CLI [Alexa SDK in NodeJS]

I have created new Skill using Ask CLI. And deploy both skill & lambda function. Now I was trying to test skill using ask simulate CLI command but got an error message that Skill is currently disabled in the development stage. Please enable skill…
Nilay Mehta
  • 1,732
  • 2
  • 20
  • 26
0
votes
1 answer

Does anyone know how to pause the amazon alexa audio player without leaving the playback screen?

I'm developing an alexa skill that has an audio player interface, and am unable to pause the audio without leaving the playback screen. I've seen other apps have their alexa pause intent perform the same function as when you touch the pause button…
momaji
  • 161
  • 1
  • 6
0
votes
1 answer

How to close a conversation in Alexa?

I am using ask-sdk version 2.3.0 const SessionEndedRequest = { canHandle(handlerInput) { const request = handlerInput.requestEnvelope.request; return request.type === 'SessionEndedRequest' }, handle(handlerInput) { …
Shubhang Arora
  • 290
  • 1
  • 4
  • 17
0
votes
1 answer

Alexa Developer Console replying with "There was a problem with the requested skill's response"

I have been trying to resolve this issue for the past couple of hours with no success. Here is my code: Lambda code: /*eslint-disable func-names */ /* eslint quote-props: ["error", "consistent"]*/ // There are three sections, Text Strings, Skill…
0
votes
1 answer

No response from CanfulFillIntentRequest in alexa

const HelloWorldIntentHandler = { canHandle(handlerInput) { return handlerInput.requestEnvelope.request.type === 'CanFulfillIntentRequest' }, handle(handlerInput) { if(handlerInput.requestEnvelope.request.intent.name ===…
Nafsss
  • 103
  • 2
  • 9
0
votes
1 answer

Alexa skill developed in node.js doesn't display any card

Alexa skill developed in node.js doesn't display any card in the home page of the Alexa app, for Simple or Standard Card type with npm package 'alexa-sdk' . It seems there's an issue in the 'Alexa-sdk' package's response.js file. I used the…
0
votes
2 answers

Reset Alexa sessionAttributes

At end of active session of user I wants to remove all sessionAttributes using handlerInput.attributesManager. How to remove all sessions at end of AMAZOn.StopIntent
Chintan7027
  • 7,115
  • 8
  • 36
  • 50
0
votes
0 answers

alexa implement CanFulfillIntentRequest in node.js

Alexa has released CanFulfillIntentRequest feature or Name-free Interaction for custom skills recently. I am trying to implement it in my existing skill which uses alexa-sdk. Please find my code below: 'use strict'; const Alexa =…
Ashy Ashcsi
  • 1,529
  • 7
  • 22
  • 54
0
votes
1 answer

Unable to send Email from Lambda function created for Alexa skill using Mailgun node package

I am trying to send Email notification to Mailgun(Authorized ID) from an alexa skill. The code is working fine when launched isolated in node environment. But fails to send the Mail when executed on Lambda. Here is the code segment: var User=…
user9246895
0
votes
1 answer

How alexa skill knows context of a user response

I want to build an Alexa skill using NodeJS. This skill will accomplish the tasks of a receptionist, which we want to install in office. It will fetch details about the visitor from the DB on providing the employee ID. Then asks for number of days…
user9246895
0
votes
1 answer

Using State Handlers in Alexa having common behaviors moved to default handler

I have created couple of Alexa state handler and one default handler. All of these are registered using alexa.registerHandlers(State1Handlers, State2Handlers,defaultHandler); I am using some built-in Intents like "repeat" which will behave same in…
Amit
  • 1,111
  • 1
  • 8
  • 14
-3
votes
1 answer

How to implement fastest api call in node js?

I tired to implement crud Operation in node js using mongodb.I have 5000 data in mongodb.In data i have lot of images.first time i tried to using get data to show all 5000 datas.but its showing 50s delay to show the data.how to show data without…
smith hari
  • 437
  • 1
  • 11
  • 22
1
2