码迷,mamicode.com
首页 > 微信 > 详细

图灵机器人API,适用于微信、微博、QQ群、智能硬件等

时间:2014-12-17 09:08:39      阅读:600      评论:0      收藏:0      [点我收藏+]

标签:style   http   ar   io   color   os   使用   sp   on   

该API有智能聊天、查天气、查快递、查菜谱、查车票、查航班、查出行、查周边等近500个功能,可以用在微信公众平台、QQ群、手机语音助手、智能硬件等领域\

[1].[代码] [PHP]代码 跳至 [1] [2]

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?PHP
/**图灵机器人网站:http://www.tuling123.com
/**API端口体验链接:http://www.tuling123.com/openapi/cloud/proexp.jsp
*/
 
$apiKey = "自己的appKey";
$apiURL = "http://www.tuling123.com/openapi/api?key=KEY&info=INFO";
 
// 设置报文头, 构建请求报文
header("Content-type: text/html; charset=utf-8");
$reqInfo = "讲个笑话";
$url = str_replace("INFO", $reqInfo, str_replace("KEY", $apiKey, $apiURL));
 
/** 方法一、用file_get_contents 以get方式获取内容 */
     $res =file_get_contents($url);
     echo $res;
 
/** 方法二、使用curl库,需要查看php.ini是否已经打开了curl扩展 */
    $ch = curl_init();
    $timeout = 5; curl_setopt ($ch, CURLOPT_URL, $url); curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
    $file_contents = curl_exec($ch);
    curl_close($ch);
    echo $file_contents;

[2].[图片] 截图.jpg 跳至 [1] [2]

bubuko.com,布布扣

图灵机器人API,适用于微信、微博、QQ群、智能硬件等

标签:style   http   ar   io   color   os   使用   sp   on   

原文地址:http://blog.csdn.net/u014311042/article/details/41977035

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!