Questions tagged [alexa-skill]

Alexa Skill is Amazon’s voice service

Alexa is Amazon’s voice service and the brain behind tens of millions of devices like the Amazon Echo, Echo Dot, and Echo Show. Alexa provides capabilities, or skills, that enable customers to create a more personalized experience. There are now tens of thousands of skills from companies like Starbucks, Uber, and Capital One as well as other innovative designers and developers.

To find more information :

1158 questions
0
votes
2 answers

Alexa keeps giving error

I get this error from Alexa trying to run Service Simulator since yesterday There was an error calling the remote endpoint, which returned HTTP 503 : Service Unavailable Is it a known issue? Is Alexa down?
husayt
  • 14,553
  • 8
  • 53
  • 81
0
votes
1 answer

Passing a callback to an event handler

I'm working on an Alexa skill in Node that runs in AWS Lambda, and having trouble getting a callback to execute when I emit an event. The Alexa-skills-kit for Node.JS README demonstrates passing a callback function to an event handler, and…
Canuteson
  • 598
  • 1
  • 4
  • 11
0
votes
0 answers

TypeError: next() takes no arguments (1 given)

I am building a SoundCloud music streaming skill for Alexa with Flask-ask in python. I have a generator function that looks like this: def stream_likes(): url = "http://api.soundcloud.com/me/favorites?oauth_token={}".format(oauth_token) r =…
Kaushik
  • 235
  • 1
  • 2
  • 12
0
votes
3 answers

Wrong intent in Alexa Skill Request when using the simulator

I set up my intents using this intent schema: { "intents": [ { "intent": "StartIntend" }, { "intent": "AMAZON.YesIntent" }, { "intent": "AMAZON.NoIntent" } ] } My sample utterances look like this (it's…
Jannik
  • 2,310
  • 6
  • 32
  • 61
0
votes
2 answers

Alexa Intent sends two requests and fails

What I am trying to do: I have a very simple Alexa Skill which listens for a command word: { "intents": [{ "intent": "AffiliateEmpire", "slots": [ { "name": "affiliate_action", "type":…
Alexander Holsgrove
  • 1,795
  • 3
  • 25
  • 54
0
votes
1 answer

HelloWorld Alexa Skill - where does it start executing?

I'm learning javascript and the basics of building an Alexa Skill. Amazon provided a simple HelloWorld Alexa Skill found here: https://github.com/amzn/alexa-skills-kit-js/blob/master/samples/helloWorld/src/index.js I have two questions about this…
Nishant
  • 131
  • 2
  • 12
0
votes
1 answer

How does the implicit grant flow work?

On this page, https://github.com/doorkeeper-gem/doorkeeper/wiki/Supported-Features, it mentions support for Implicit Grants. It looks like the authorizations#create is the endpoint I want and it does return an access_token but it doesn't return the…
Andrew Goodnough
  • 1,068
  • 7
  • 8
0
votes
1 answer

Amazon Alexa Recording custom words

Do you guys know if Alexa can register a custom user said word that is no a AMAZON.Something, now that AMAZON.literal (which was a catch all for any word) is deprecated. For example for a skill like "wikipedia". Whereby I want to be able to say "Hey…
George
  • 3,521
  • 4
  • 30
  • 75
0
votes
1 answer

Alexa node sdk chaining events

I'm trying to develop a skill for amazon alexa whereby the application leads the user into a new state. "User input" -> "Speak" -> "Ask Question" -> "User input" .... etc Is the most obvious way of going about this, however, this means I have to…
George
  • 3,521
  • 4
  • 30
  • 75
0
votes
1 answer

How to get the second utterance- Alexa

I am trying to build a conversational skill in Amazon Alexa. Once I start my skill, how can I know what the user said for the second time when I set should_end_session as false?
0
votes
1 answer

alexa Steam custom skill api integration

currently trying to develop one of my first alexa skills. trying to build a skill that updates the user on who out of their Steam friends, are online. Curerntly it's pretty messy and not in the format i hope it to be in the end, but for testing…
0
votes
3 answers

Alexa-Skill Monetization possibilities for developers

We created Alexa Skill using AWS Lambda. Currently our skill is available as FREE skill. Is there option to develop a paid skill ( advertisements / in-app purchases )? Looking for Monetization options for developers. Looked at…
Amod Gokhale
  • 2,346
  • 4
  • 17
  • 32
0
votes
1 answer

only builtin utterances working ASK

I'm developing a skill in Amazon Alexa. I'm trying to test the same using echosim.io but the problem is as below. My Skill name is MyBot and the same is invocation name. In echosim.io, When I say Alexa Launch MyBot, it gives the welcome response…
user3872094
  • 3,269
  • 8
  • 33
  • 71
0
votes
2 answers

How can I get Amazon echo to respond to "preheat the car" or "what's the car battery status"? (they get hijacked)

I'm trying to create some skills for my Echo (for my own use, I'm not concerned about the invocation names not getting through review). I've set my invocation name as "the car" (I also tried "car"). I wanted to be able to ask what my battery status…
Danny Tuppeny
  • 40,147
  • 24
  • 151
  • 275
0
votes
1 answer

Is there a way to define a custom skills values each time the skill gets invoked?

I am attempting to make a skill which can select files, Unfortunately the AMAZON.LITERAL type is being deprecated and I need to update my skill to a custom skill type. I already have code that generates keywords for selectable files, is there a way…
Ximidar
  • 3
  • 2