我正在使用Https Call从php代码中检索数据, 我有一个意图->用户将询问用户的状态,@response我正在显示“输入用户ID”。 但是出现错误“技能问题”。 我的代码
<xs:simpleType name="Quantity100to2000">
<xs:restriction base="xs:integer">
<xs:minExclusive value="100"/>
<xs:maxExclusive value="2000"/>
</xs:restriction>
</xs:simpleType>
<xs:element name="qty" maxOccurs="1" minOccurs="1" type="Quantity100to2000"/>
详细信息:
else if($EchoReqObj->request->intent->name =="status"){
$text = "Please provide the id";
$array = array("version"=>"1.0","response"=>array("outputSpeech"=>array("type"=>"PlainText","text"=>$text),"directives"=>array("type"=>"Dialog.ElicitSlot","slotToElicit"=>"id"),"shouldEndSession"=>false));
echo json_encode($array);
}
预期输出:
Intent name: status
Intent Slot: id
预先感谢