圖靈機器人API,適用于微信、微博、QQ群、智能硬件等
<?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
;
推薦文章
2025-01-18
2024-11-28
2024-11-09
2024-10-25
2024-06-25
2024-01-04
2023-11-06
2023-10-30
2023-10-13
2023-10-10
穩定
產品高可用性高并發貼心
項目群及時溝通專業
產品經理1v1支持快速
MVP模式小步快跑承諾
我們選擇聲譽堅持
10年專注高端品質開發