接口地址:https://v2.alapi.cn/api/new/wbtop |
---|
返回格式:json |
请求方式:get/post |
请求示例:https://v2.alapi.cn/api/new/wbtop?num=10&token=token |
名称 | 类型 | 必填 | 说明 |
---|---|---|---|
token | string | 必填 | 请求token 扫码关注公众号 |
num | int | 选填 | 请求条数 |
名称 | 类型 | 说明 |
---|---|---|
hostWord | string | 热门关键词 |
hostWordNum | string | 热门指数 |
{
"code": 200,
"msg": "success",
"data": [{
"hostWord": [
"孙杨外教离开我们游泳队"
],
"hostWordNum": [
"4163407"
]
},
{
"hostWord": [
"泉州被困男子获救后手指妻孩方向"
],
"hostWordNum": [
"2191411"
]
}
],
"Author": {
"name": "Alone88",
"desc": "由Alone88提供的免费API 服务,官方文档:www.alapi.cn"
}
}
错误码 | 说明 |
---|---|
500 | 处理异常 |
<?php
/**
* Created by PhpStorm.
* User: FZS
* Time: 2020/02/01 00:16
*/
class freeApi
{
private $apiUrl;
public function __construct()
{
$this->apiUrl = 'https://v1.alapi.cn/api/new/wbtop';
}
/**
* 获取结果
* @return array
*/
public function getResult()
{
return file_get_contents($this->apiUrl);
}
}
package main
import (
"fmt"
"io/ioutil"
"log"
"net/http"
)
const (
APIURL = "https://v1.alapi.cn/api/new/wbtop"
)
func main() {
queryUrl := fmt.Sprintf("%s?num=1",APIURL)
resp, err := http.Get(queryUrl)
if err != nil {
log.Println(err)
return
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(string(body))
}