少数派热榜

少数派网站根据点赞量排序热榜

API 文档

请求参数说明:

名称 必填 类型 说明
type string 查询的类型

返回参数说明:

名称 类型 说明
success string 返回状态的真假
title string 接口标题
subtitle string 接口信息
update_time string 访问接口刷新时间
data.index string 列表序号
data.title string 列表标题
data.createdAt string 列表文章发布时间
data.other string 列表文章作者
data.like_count string 列表文章喜欢数量
data.comment_count string 列表文章评论数量
data.url string 列表文章链接
data.mobilUrl string 列表文章链接
copyright string 版权信息

返回示例:

{
    "success": true,
    "title": "少数派",
    "subtitle": "发电量",
    "update_time": "2024-11-22 08:39:15",
    "data": [
        {
            "index": 1,
            "title": "派评 | 近期值得关注的 App",
            "createdAt": "2024-11-18",
            "other": "少数派编辑部",
            "like_count": 8,
            "comment_count": 28,
            "url": "https:\/\/sspai.com\/post\/94027",
            "mobilUrl": "https:\/\/sspai.com\/post\/94027"
        },
        {
            "index": 2,
            "title": "本周看什么 | 最近值得一看的 8 部作品",
            "createdAt": "2024-11-15",
            "other": "少数派编辑部",
            "like_count": 15,
            "comment_count": 12,
            "url": "https:\/\/sspai.com\/post\/93960",
            "mobilUrl": "https:\/\/sspai.com\/post\/93960"
        }
    ],
    "copyright": "善恶聚合热搜榜,源码获取联系QQ3951157"
}

错误码格式说明:

名称 类型 说明
true bool 返回状态为真
false bool 返回状态为假(参数未填写正确)

代码示例:

<?php
// 初始化cURL会话
$ch = curl_init();
// 设置请求URL,用户中心获取token,自行替换其他参数
curl_setopt($ch, CURLOPT_URL, "https://api.ba9.cn/api/get.sspaihot?type=sspai");
// 设置请求头
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);
?>
暂无示例
暂无示例
暂无示例
暂无示例
暂无示例
暂无示例