接口地址:https://v2.alapi.cn/api/hitokoto |
---|
返回格式:json/text |
请求方式:get/post |
请求示例:https://v2.alapi.cn/api/hitokoto?type=b&token=token |
名称 | 类型 | 必填 | 说明 |
---|---|---|---|
token | string | 必填 | 请求token 扫码关注公众号 |
format | string | 选填 | 默认返回 json 格式,返回文本参数为 text |
type | string | 选填 | 一言的类型(a动画,b漫画,c游戏,d小说,e原创,f来自网络,g其他) |
名称 | 类型 | 说明 |
---|---|---|
hitokoto | string | 一言 |
type | string | 类型 |
from | string | 来源 |
creator | string | 作者 |
{
"code": 200,
"msg": "success",
"data": {
"id": 1084,
"hitokoto": "人不是靠做出来的 而是靠活出来的。",
"type": "g",
"from": "士兵突击",
"creator": "哆啦尼可夫"
},
"Author": {
"name": "Alone88",
"desc": "由Alone88提供的免费API 服务,官方文档:www.alapi.cn"
}
}
错误码 | 说明 |
---|---|
404 | api 地址错误 |
<?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/hitokoto';
}
/**
* 获取结果
* @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/hitokoto"
)
func main() {
queryUrl := fmt.Sprintf("%s",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))
}