名称 | 必填 | 类型 | 说明 |
---|---|---|---|
type | 是 | string | 查询的类型 |
名称 | 类型 | 说明 |
---|---|---|
success | string | 返回状态的真假 |
title | string | 热搜名称 |
subtitle | string | 小标题 |
update_time | string | 访问接口的时间 |
data.index | string | 热搜列表序号 |
data.title | string | 热搜列表标题 |
data.name | string | 是否热门是否最新 |
data.hot | string | 点击量 |
data.url | string | 热搜链接 |
data.mobilUrl | string | 热搜链接 |
copyright | string | 版权声明 |
{
"success": true,
"title": "微博",
"subtitle": "热搜榜",
"update_time": "2024-11-22 02:54:07",
"data": [
{
"index": 1,
"title": "王宝强被举报涉嫌欺诈",
"name": "热",
"hot": "11.7万",
"url": "https:\/\/s.weibo.com\/weibo?q=王宝强被举报涉嫌欺诈&Refer=index",
"mobilUrl": "https:\/\/s.weibo.com\/weibo?q=王宝强被举报涉嫌欺诈&Refer=index"
},
{
"index": 2,
"title": "国博补赠中国小姐姐凤冠冰箱贴",
"name": "新",
"hot": "6.1万",
"url": "https:\/\/s.weibo.com\/weibo?q=国博补赠中国小姐姐凤冠冰箱贴&Refer=index",
"mobilUrl": "https:\/\/s.weibo.com\/weibo?q=国博补赠中国小姐姐凤冠冰箱贴&Refer=index"
}
],
"copyright": "善恶聚合热搜榜,源码获取联系QQ3951157"
}
名称 | 类型 | 说明 |
---|---|---|
true | bool | 返回状态为真 |
false | bool | 返回状态为假(参数未填写正确) |
<?php
// 初始化cURL会话
$ch = curl_init();
// 设置请求URL,用户中心获取token,自行替换其他参数
curl_setopt($ch, CURLOPT_URL, "https://api.ba9.cn/api/get.weibohot?type=weibo");
// 设置请求头
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);
?>
暂无示例
暂无示例
暂无示例
暂无示例
暂无示例
暂无示例