在Twilio消息中使用SSML

时间:2018-09-11 07:42:12

标签: java twilio ssml

我正在使用Twilio Java SDK,并且我想使用没有SSml对象(如SSmlSayAs等)的SSML。

是这样的:

Say say = new Say.Builder("John’s phone number is, <say-as interpret-as=\"telephone\">4155551212</say-as>")
            .voice(Voice.POLLY_EMMA).build();

可能吗?因此,构建器的字符串参数可能包含SSML标签。

Text-to-Speech中,说

  

根据SSML规范,SSML的根元素以开头,但是当您使用SSML时,可以跳过并在其中插入其余的SSML。

但是XML结果如下:

<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Gather>
<Say voice="Polly.Emma">John’s phone number is, &lt;say-as interpret- 
as="telephone"&gt;4155551212&lt;/say-as&gt;</Say>
</Gather>
</Response>

打个招呼,谢谢。

0 个答案:

没有答案