名称 | 必填 | 类型 | 描述 | 示例 |
---|---|---|---|---|
token | true | string | 请求token,用户中心获取。 | 用户中心获取token |
type | false | string | 获取热榜的 type ,默认 36k,详细见下面表格 | 36k |
type 参数说明
因为已经封装好了id
, 你只需要提供对应的 type
就可以
type 参数值 | 说明 |
---|---|
zhihu | 知乎热榜 |
weibo | 微博热搜 |
weixin | 微信 ‧ 24h热文榜 |
baidu | 百度 ‧ 实时热点 |
toutiao | 今日头条 |
163 | 网易新闻 |
xl | 新浪网 ‧ 热词排行榜 |
36k | 36氪 ‧ 24小时热榜(默认) |
hitory | 历史上的今天 |
sspai | 少数派 |
csdn | **csdn **今日推荐 |
juejin | 掘金热榜 |
bilibili | 哔哩哔哩热榜 |
douyin | 抖音视频榜 |
52pojie | 吾爱破解热榜 |
v2ex | V2ex 热帖 |
hostloc | 全球主机论坛热帖 |
和获取热榜参数一致
名称 | 描述 |
---|---|
name | 热榜名称 |
last_update | 更新时间 |
list | 热榜集合 |
list.title | 热榜标题 |
list.link | 热榜新闻链接 |
link.other | 其他数据,一般是热度 |
curl -X POST \
https://v2.alapi.cn/api/tophub/get \
-H 'Content-Type: application/x-www-form-urlencoded' \
-d 'token=用户中心获取token&type=36k'
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "https://v2.alapi.cn/api/tophub/get",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => "token=用户中心获取token&type=36k",
CURLOPT_HTTPHEADER => array(
"Content-Type: application/x-www-form-urlencoded",
),
));
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
OkHttpClient client = new OkHttpClient();
MediaType mediaType = MediaType.parse("application/x-www-form-urlencoded");
RequestBody body = RequestBody.create(mediaType, "token=用户中心获取token&type=36k");
Request request = new Request.Builder()
.url("https://v2.alapi.cn/api/tophub/get")
.post(body)
.addHeader("Content-Type", "application/x-www-form-urlencoded")
.build();
Response response = client.newCall(request).execute();
import requests
url = "https://v2.alapi.cn/api/tophub/get"
payload = "token=用户中心获取token&type=36k"
headers = {'Content-Type': "application/x-www-form-urlencoded"}
response = requests.request("POST", url, data=payload, headers=headers)
print(response.text)
OkHttpClient client = new OkHttpClient();
MediaType mediaType = MediaType.parse("application/x-www-form-urlencoded");
RequestBody body = RequestBody.create(mediaType, "token=用户中心获取token&type=36k");
Request request = new Request.Builder()
.url("https://v2.alapi.cn/api/tophub/get")
.post(body)
.addHeader("Content-Type", "application/x-www-form-urlencoded")
.build();
Response response = client.newCall(request).execute();
package main
import (
"fmt"
"strings"
"net/http"
"io/ioutil"
)
func main() {
url := "https://v2.alapi.cn/api/tophub/get"
payload := strings.NewReader("token=用户中心获取token&type=36k")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
返回状态码 code
描述参照
错误码 | 说明 |
---|---|
200 | 返回200表示接口正常 |
404 | 接口地址不存在 |
422 | 接口请求失败 |
400 | 接口请求失败 |
405 | 请求方法不被允许 |
100 | token 错误 |
101 | 账号过期 |
102 | 接口请求次数超过限制 |
104 | 来源或者ip不在白名单 |
406 | 没有更多数据了 |
429 | 请求 QPS 超过限制 |
内容 | 详情 |
---|---|
客服QQ | 1830934534 |
交流群 |