I am trying to write a unique Alexa Skill for the Amazon Alexa. I want to write a custom Lambda Function that plays the audio content contained at the following api (https://api.ense.nyc/latest).
I've read through all of Amazon's documentation on the subject:
- Building a Custom Skill
- Flashbriefing Skill
I am confused about exactly how to proceed in writing a unique lambda function.
Playing audio in alexa is a bit tricky than regular skills.
Looks like you need to do:
-Parse your JSON and create some kind of object that holds audio url and audio cards.
-Then you need to set skill state to PLAY_MODE start playing audios with ask
audioPlayerPlay()
command. (https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/custom-audioplayer-interface-reference#audioplayer-directives)-Then you need to set audio event handlers to keep track of the audio events.
-You need to set intents to let user play next or previous audios.
List goes on...
Here is a sample podcast skill that parses an XML feed and plays the audio
https://github.com/bespoken/streamer