Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Learn more about Alexa specific features that can be used with the Jovo Framework.

Introduction to Alexa Specific Features

Find an introduction to how Amazon Alexa works here: Getting Started > Voice App Basics > Amazon Alexa.

You can access the alexaSkill object like this:

let alexa = this.alexaSkill();

Routing

This section provides an overview of Alexa specific features for routing. For the basic concept, take a look here: App Logic > Routing.

Dialog Interface

You can find more about dialog interface here: Platform specifics > Amazon Alexa > Dialog Mode.

Data

This section provides an overview of Alexa specific features for user data. For the basic concept, take a look here: App Logic > Data.

Shopping and To Do Lists

You can find more about lists here: Platform specifics > Amazon Alexa > Lists

Location

Learn how to access your user's location data here: Platform specifics > Amazon Alexa > Data

Output

This section provides an overview of Alexa specific features for output. For the basic concept, take a look here: App Logic > Output.

Progressive Responses

For responses that require long processing times, you can use progressive responses to tell your users that you are currently working on fulfilling their request.

Here is the official reference by Amazon: Send the User a Progressive Response.

this.alexaSkill().progressiveResponse(speech);

Find an example file here: indexProgressiveResponse.js.

Visual Output

You can find out more about visual output here: Platform specifics > Amazon Alexa > Visual

AudioPlayer Skills

You can find more about Jovo Audioplayer support here: Platform specifics > Amazon Alexa > Audioplayer.