我想为聊天做一个自动回复,我不知道从哪里开始。
表格数据是;
{"channel":"#channel","message":"Hello","attributes":[{"type":"italic","start":0,"end":1},{"type":"color","start":0,"end":1,"color":128}],"token":"oausia9saUSiau98SsUASyuaysI","action":false,"request":"send"}
所以每当有人写Hello时,我都想回复消息你好,你好吗?
我不知道它必须写什么语言,我应该如何编码才能做出回应?
答案 0 :(得分:1)
将表单数据发布到这样的php页面(通过ajax或常规表单发布):
<?php
$msg = strtolower($_POST['message']);
if($msg == 'hello'){
echo 'Hello, how are you?';
exit;
}
else if($msg == 'bye'){
echo 'Good bye!';
exit;
}
?>