We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am trying to use SSML. This is what I have so far:
$out = 'Test <say-as interpret-as="interjection"> abracadabra!</say-as> Something else'; return \Alexa::say($out, "SSML")->endSession(false);
In the simulator this arrives as:
"outputSpeech": { "ssml": "Test <say-as interpret-as=\"interjection\"> abracadabra!</say-as> Something else", "type": "SSML" },
The simulator can output this, the real device refuses to do that ("problem has occured" -> don't know the correct error msg in English).
Questions:
In other words: How can I bring SSML to life with this library?
The text was updated successfully, but these errors were encountered:
+1 for anyone looking into this. Anyone using SSML successfully with this library? Haven't really dug into this yet but it's next on my list.
Sorry, something went wrong.
return Alexa::ssml('<speak>' . $text . '<break time="2s"/>' . $text2 . '</speak>'); works for me.
return Alexa::ssml('<speak>' . $text . '<break time="2s"/>' . $text2 . '</speak>');
No branches or pull requests
I am trying to use SSML. This is what I have so far:
In the simulator this arrives as:
The simulator can output this, the real device refuses to do that ("problem has occured" -> don't know the correct error msg in English).
Questions:
In other words: How can I bring SSML to life with this library?
The text was updated successfully, but these errors were encountered: