voice.onActionEvent - GiGAGenie-ServiceSDK/UserGuide GitHub Wiki
gigagenie.voice.onActionEvent
API μ€λͺ
- Action μμ API
- λ±λ‘λ Action μ λν μμ Event
- λ±λ‘λ Action μ λν SDKμ ActionCode(λν SDK: Intentλͺ
)κ° λ±λ‘λμ΄ μμ΄μΌ ν¨
- νμ¬ μ€ν μ€μΈ appid μ λν Action μμ μ Event λ₯Ό μ λ¬
API ꡬ쑰
- function callback(extra)
actioncode
: λ°ν Intentμ λμΌ
actionpath
: λ±λ‘ν μ΄λ Path
voicerecid
: νμ μΈμλ ContainerID κ°(μΈμ μλ κ²½μ° "UNKNOWN", νμμλ³λ±λ‘μ΄ μλμ΄ μμΌλ©΄ "NONE" μ λ¬)
uword
: λ°νν 문ꡬ
parameter
: λν μλ²μμ μ λ¬νλ parameter JSON κ°
onActionEvent
μ½λ°±μ΄ μ μλμ§ μμΌλ©΄ ν΄λΉ actionpath
λ‘ μλ μ΄λνλ€.
μ¬μ© μμ
gigagenie.voice.onActionEvent=function(extra){
switch(extra.actioncode){
case 'QueryHello':
//QueryHello μ²λ¦¬
break;
case 'QueryWorld':
//QUeryWorld μ²λ¦¬
break;
default:
break;
});