I uploaded the jazz.mp3 file in the media folder to my S3 storage. when I run my skill with this code:
handle(handlerInput) { const audioUrl = Util.getS3PreSignedUrl("Media/jazz.mp3").replace(/&/g,'&'); return handlerInput.responseBuilder .speak(`hello world with audio <audio src="${audioUrl}"/>`) .getResponse(); }
i have message froma Alexa: "I am having trouble connecting to the audio file U.R.I."
help me please!