we currently try to play multiple audio files from an Alexa Skill at a certain intent. We sadly only are able to play one audio file. Our code for that is the following
response.Response.Directives.Add(new AudioPlayerPlayDirective()
{
PlayBehavior = PlayBehavior.Enqueue,
AudioItem = new Alexa.NET.Response.Directive.AudioItem()
{
Stream = new AudioItemStream()
{
Url = "https://s3.eu-central-1.amazonaws.com/morseitech/360ms.mp3",
Token = "360ms",
ExpectedPreviousToken = "120ms"
}
}
});