add WebQQ support.

This commit is contained in:
dennydai
2016-02-15 02:13:17 +08:00
parent 0297df5d37
commit cd61f21a92
4 changed files with 126 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
$BOT = new Base;
$GET = json_decode(file_get_contents("php://input"),true);
//is group?
if ($GET['type'] = 0) {
$isgroup = false;
}else{
$isgroup = true;
}
$from = $GET['uin'];
$text = $GET['msg'];