Simsimi (小黄鸡) 非官方API接口

SimSimi是一款来自韩国的聊天机器人应用,以吉祥物“小鸡鸡”自居。SimSimi机器人的界面非常可爱,深受女生欢迎,最近网络上还刮起了一阵和SimSimi机器人对话的旋风

主要是它很贱,会普通话、粤语和英语

当然,如果你有兴趣捣鼓一个机器人,做人机对话,那是非常有趣的

可是人工智能远没有我们想象的那么简单

如果有第三方的API接口的活,就好办多了

Simsimi 虽然有API接口,但是是商用的,我们只有自己想办法咯

下面这个是暂时可用的非官方API接口,分享给大家,如果哪天不能用了,大家有需要的再捣鼓一下吧

simsimi-api.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
/**
 *  
 *作者:@Belin_love  
 *来源:http://52its.sinaapp.com/  
 *日期:2012.11.27  
 *  
 **/

//function simsimi($keyword)   
//{   
//做成API接口的话,请发起GET请求,返回Josn   
//只自己用的话,封装成一个函数,返回JSON字段中的response   


if(isset($_GET['key'])){
    $keyword = $_GET['key'];
    $url = "http://www.simsimi.com/talk.htm?lc=ch";

    //这个curl是因为官方每次请求都有唯一的COOKIE,我们必须先把COOKIE拿出来,不然会一直返回“HI”   

    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_HEADER, 1);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    $content = curl_exec($ch);
    curl_close($ch);
    list($header, $body) = explode("\r\n\r\n", $content);
    preg_match("/set\-cookie:([^\r\n]*)/i", $header, $matches);
    //curl_setopt($ch, CURLOPT_COOKIE, $cookie);   
    $cookie = $matches[1];


    $urll = 'http://www.simsimi.com/func/req?msg=' .$keyword. '&lc=ch';

    // 这个CURL就是模拟发起请求咯,直接返回的就是JSON   

    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $urll);
    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch, CURLOPT_REFERER, "http://www.simsimi.com/talk.htm?lc=ch");
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_COOKIE, $cookie);
    $content = curl_exec($ch);
    curl_close($ch);

    //输出json   
    print_r($content);

    /*$reply = '你说的话太高深啦,我还听不懂,你可以教教我吗?[兔子]';   
    $json = json_decode($json, 1);  
    if (isset($json['response'])) {  
        $reply = $json['response'];  
    }  
    echo $reply;  
}*/
}

?>  

Comments