Я использую Https Call для получения данных из кода PHP,
У меня было одно намерение -> пользователь спросит статус пользователя, @response я показываю «Введите идентификатор пользователя».
Но получаю ошибку "проблема с навыками".
мой код
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
Ожидаемый результат:
user-> status of user.
alexa -> Enter user id.
user -> 123456
alexa -> status of user Active.
Заранее спасибо