petermcd / Alexa-Skills-Kit-SDK-For-PHP

Alexa Skills Kit SDK For PHP
MIT License
3 stars 0 forks source link

Escaped Double Quotes In SSML #1

Open ghost opened 7 years ago

ghost commented 7 years ago

At present if outputting speech that contains SSML which contains double quotes for example:

<speak>I said hello. <break time="2s"/>Did you hear me?</speak>

the resulting SSML will be:

<speak>I said hello. <break time=\"2s\"/>Did you hear me?</speak>

This causes the JSON passed to Amazon to be invalid and causes an error.

ghost commented 7 years ago

Currently determining the best solution to resolve. Possibilities are:

Currenlty open to suggestions.