名称 | 必填 | 类型 | 说明 |
---|---|---|---|
type | 是 | string | 查询的类型 |
名称 | 类型 | 说明 |
---|---|---|
success | string | 返回状态的真假 |
title | string | 接口名称 |
subtitle | string | 信息来源 |
update_time | string | 访问接口刷新时间 |
data.index | string | 列表序号 |
data.title | string | 列表标题 |
data.year | string | 列表发生事情的年份 |
data.url | string | 百科链接 |
data.mobilUrl | string | 百科链接 |
copyright | string | 版权信息 |
{
"success": true,
"title": "历史上的今天",
"subtitle": "百度百科",
"update_time": "2024-11-22",
"data": [
{
"index": 1,
"title": "北宋政治家、文学家王安石第二次罢相",
"year": "1076",
"url": "https:\/\/baike.baidu.com\/item\/%E7%8E%8B%E5%AE%89%E7%9F%B3\/127359",
"mobilUrl": "https:\/\/baike.baidu.com\/item\/%E7%8E%8B%E5%AE%89%E7%9F%B3\/127359"
},
{
"index": 2,
"title": "中国清代画家郑板桥出生",
"year": "1693",
"url": "https:\/\/baike.baidu.com\/item\/%E9%83%91%E6%9D%BF%E6%A1%A5\/27449",
"mobilUrl": "https:\/\/baike.baidu.com\/item\/%E9%83%91%E6%9D%BF%E6%A1%A5\/27449"
}
],
"copyright": "善恶聚合热搜榜,源码获取联系QQ3951157"
}
名称 | 类型 | 说明 |
---|---|---|
true | bool | 返回状态为真 |
false | bool | 返回状态为假(参数未填写正确) |
<?php
// 初始化cURL会话
$ch = curl_init();
// 设置请求URL,用户中心获取token,自行替换其他参数
curl_setopt($ch, CURLOPT_URL, "https://api.ba9.cn/api/get.history?type=history");
// 设置请求头
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Authorization: YOUR_TOKEN'
));
// 返回响应而不是直接输出
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// 执行请求并获取响应
$response = curl_exec($ch);
// 关闭cURL会话
curl_close($ch);
// 将响应解析为JSON格式
$data = json_decode($response, true);
// 输出JSON数据
print_r($data);
?>
暂无示例
暂无示例
暂无示例
暂无示例
暂无示例
暂无示例