茉莉机器人API,可用于QQ机器人、微信公众平台、网站客服等
程序员文章站
2022-06-01 15:22:18
...
茉莉机器人API,智能聊天,可查天气、ip、QQ资料、lol战绩,还能讲笑话和抽签
PHP代码
<?php /** * 茉莉机器人网站:http://www.itpk.cn * 茉莉机器人在线体验:http://www.itpk.cn/experience.php */ header("Content-type:text/plain; charset=utf-8"); //不使用ApiKey调用 $result = file_get_contents("http://i.itpk.cn/api.php?question=123"); //使用ApiKey调用 //$result = file_get_contents("http://i.itpk.cn/api.php?question=123&api_key=你的ApiKey&api_secret=你的ApiSecret"); echo $result; ?>