Skip to content

Instantly share code, notes, and snippets.

@lyingdragon
Last active January 23, 2018 07:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lyingdragon/d840e8bf2ae8f90d9e4c1dfd50c00ade to your computer and use it in GitHub Desktop.
Save lyingdragon/d840e8bf2ae8f90d9e4c1dfd50c00ade to your computer and use it in GitHub Desktop.
How to handle GuideIntents
const intent = this.request.intent.name
...
switch (intent) {
...
case 'Clova.GuideIntent':
cekResponse.appendSpeechText("주사위 한 개 던져줘, 라고 시도해보세요.")
break
default:
cekResponse.appendSpeechText("죄송해요. 이해할 수 없습니다.")
cekResponse.appendSpeechText("주사위 한 개 던져줘, 라고 시도해보세요.")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment