我正在尝试通过 Alexa 播放音频文件。我在 Ruby on Rails 中的后端,我正在使用 alexa-ruby gem。
我能够通过这样的询问和讲述指令发表演讲
def index
parsed_request = JSON.parse(request.body.read)
alexa = AlexaRuby.new(parsed_request)
speech = "Hey there! I am alexa"
response = alexa.response.ask!(speech)
render json: response
end
当我尝试播放音频时,我没有得到任何回应。这就是我试图做的
def index
parsed_request = JSON.parse(request.body.read)
alexa = AlexaRuby.new(parsed_request)
params = { url: 'https://s3.amazonaws.com/my-ssml-samples/Flourish.mp3', token: 'flourish-token', offset: 0 }
response = alexa.response.add_audio_player_directive(:start, params)
render json: response
end