Рубрики
Без рубрики

Как отправить ответ в формате JSON на AWS Alexa skill с JAVA

Как отправить ответ в формате JSON на AWS Alexa skill с JAVA. С тегами java, alexa, aws.


JSONObject outputSpeechContent = new JSONObject();
outputSpeechContent.put("type", "PlainText");
outputSpeechContent.put("text", engineResponse.getText());
JSONObject outputSpeech = new JSONObject();
outputSpeech.put("outputSpeech", outputSpeechContent);

JSONObject resObj = new JSONObject();
resObj.put("version", "1.01");
resObj.put("response", outputSpeech);
response.setStatusCode(200);

Оригинал: “https://dev.to/mu/how-to-send-json-response-to-aws-alexa-skill-from-java–2a6a”