Questions tagged [alexa]

Alexa is a voice service developed by Amazon, made popular by the Amazon Echo and the Amazon Echo Dot devices developed by Amazon Lab126.

From Wikipedia:

Alexa is a voice service developed by Amazon, made popular by the Amazon Echo and the Amazon Echo Dot devices developed by Amazon Lab126. Out of the box, it is capable of voice interaction, music playback, making to-do lists, setting alarms, streaming podcasts, playing audiobooks, and providing weather, traffic, and other real time information, such as news. Developers can expand on the experiences supported by Alexa powered devices by developing "skills". Alexa can also control several smart devices using itself as a home automation system.

Interaction and communication with Alexa is available in English (US), English (CA), English (UK), English (AU), English (IN), French (CA), French (FR), Spanish (ES), Spanish (MX), Spanish (US), Portuguese (BR), German (DE), Italian (IT), Japanese (JP), and Hindi (IN)

2451 questions
7
votes
1 answer

How to fix Warning: Application ID is not set?

I always get the error 'Application ID is not set' in my log files while I have set this ID like they say in this example: const APP_ID = 'amzn1.ask.skill.xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'; How can I fix this problem?
Jurik
  • 3,244
  • 1
  • 31
  • 52
7
votes
3 answers

How to correctly specify SSML in an Alexa Skill lambda function?

I am trying to make an Alexa skill where Alexa says something that has been marked up with SSML. I have tried to mimic the example in this repo, but I am always receiving a lambda response of { ... "response": { "outputSpeech": { …
David Baker
  • 310
  • 1
  • 3
  • 9
7
votes
3 answers

Issue with Null SpeechletResponse (Alexa)

Something is messed up with my AMAZON.StopIntent. No matter what I put there (I've tried everything from every tutorial), whenever it's called, I get "There was a problem with the requested skill's response" and the Alexa app shows the error as…
Branch
  • 387
  • 5
  • 16
7
votes
3 answers

Securing Django OAuth Toolkit Views

We're looking to implement Django OAuth on our backend in order to integrate Alexa and other 3rd party APIs. We've been following the tutorials on their site (http://django-oauth-toolkit.readthedocs.io/en/latest/tutorial/tutorial.html), but have run…
Nat Homer
  • 458
  • 4
  • 17
7
votes
2 answers

Get unique device id for every amazon echo devices

I need to make a Custom Skill for the Alexa Skills Kit, which should be one echo device in every room. I need to get the device_id for every echo device. I heard this isn't possible, but maybe it changed, or if not is there any other way around.
7
votes
6 answers

How to know the original country of a website?

I want to know the original country of a website. I noticed that Alexa website can often detect the original country of websites. For example, Alexa can detect that the original country of stackoverflow.com website is USA and so on. How Alexa do…
Amr
  • 4,809
  • 6
  • 46
  • 60
7
votes
3 answers

Amazon Alexa - capture full transcript

I am building an Alexa Skill using AWS Lambda and NodeJS. I have two questions: 1) Is it possible for me to retrieve the full transcript of the speaker? In my Alexa phone app, I'm able to read exactly what I've spoken, but I'd like to collect this…
user3871
  • 12,432
  • 33
  • 128
  • 268
7
votes
4 answers

Only getting single word parameters from Alexa Skills Kit

I'm writing an Alexa Skill, and I can only get single word parameters into my code. Here is the intent schema: { "intents": [ { "intent": "HeroQuizIntent", "slots": [ { "name": "SearchTerm", "type":…
Xanxir
  • 476
  • 1
  • 8
  • 13
7
votes
0 answers

HTTP posting using Alexa and JS

I am trying to get an Alexa skill (JS/Lambda) to post a value to a REST server using HTTP.request. I am trying to hack together something simple that will get the job done. I think I am missing something obvious. Ideal Skill Usage I say, "Alexa,…
ARB
  • 71
  • 1
  • 7
7
votes
4 answers

Getting an Alexa Slot value out of an intent

I'm working to build an Alexa skill and have run into a roadblock on getting my slot values out of the intent object. The intent object JSON looks like so: "intent": { "name": "string", "slots": { "string": { "name": "string", …
Bill L
  • 2,576
  • 4
  • 28
  • 55
7
votes
3 answers

How to calculate PageViews of a site using Alexa stats (formula?)

As simple as it sounds, I just want to know how to calculate the PageViews of a site using Alexa stats. Alexa gives PageViews per-million and reach % of total Internet users, etc. I only want a formula using Alexa data to calculate it. I know, Alexa…
shamittomar
  • 46,210
  • 12
  • 74
  • 78
6
votes
3 answers

"There was a problem with the requested skill's response" on Alexa Simulator

I am trying to setup a sample Alexa skill set with sample 'hello world' lambda function. But when testing on Alexa simulator, showing There was a problem with the requested skills response as shown in below. I have created a sample Alexa skill set…
David
  • 380
  • 2
  • 14
6
votes
2 answers

How to make REST API calls to Amazon Alexa

I am building a custom Alexa skill and want to make REST API calls. Currently, I am able to make GET request to fetch data from my web service which is then used by Alexa. However, I have the following requirements and I am not sure how to go about…
samdset
  • 233
  • 1
  • 5
  • 19
6
votes
3 answers

HTTP request with Alexa and Lambda on SDK v2, how to make it works?

I am playing with ASK SDK v2 provided by Amazon in order to make Skill for Alexa but I face an architectural problem : First of all, the HTTP request works like a charm but I would like to return speach response if and only if my HTTP request is…
Ashbay
  • 1,641
  • 13
  • 20
6
votes
3 answers

Error code: InvalidIntentSamplePhraseSlot -

I got the error code Error code: InvalidIntentSamplePhraseSlot when I built the model using the new skills console. The full error message is Sample utterance "AddBookmarkIntent i am at {pageno} of {mybook}" in intent "AddBookmarkIntent" cannot…
TinyEpic
  • 541
  • 1
  • 11
  • 18