茉莉机器人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;
 
?>
登录后复制


09-18 01:30