稳定、快速、免费的 API 接口服务
随机输出表达情绪的古诗词
接口地址: https://58.linkpc.net/doc/moodpoetry.html
返回格式: JSON
请求方式: GET
请求示例: https://58.linkpc.net/api/moodpoetry
请求参数说明:
名称 | 必填 | 类型 | 说明 |
---|---|---|---|
type | 否 | int | 分类查询,1离别,2人生,3生活,4四季 |
返回参数说明:
名称 | 类型 | 说明 |
---|---|---|
title | String | 标题 |
content | String | 内容 |
author | String | 作者 |
type | int | 分类,1离别,2人生,3生活,4四季 |
返回示例:
{
"code": 200,
"msg": "success",
"data": {
"title": "饮湖上初晴后雨二首·其二",
"content": "欲把西湖比西子,淡妆浓抹总相宜。",
"author": "苏轼",
"type": 4
}
}
错误码格式说明:
名称 | 类型 | 说明 |
---|
代码示例:
<?php
header('Content-type: application/json; charset=utf-8');
date_default_timezone_set('PRC');
$url = 'https://58.linkpc.net/api/moodpoetry';
$type = isset($_GET['type']) ? $_GET['type'] : '';
if ($type == 'json' || $type == 'JSON') {
$result = file_get_contents($url . '?type=json');
echo htmlspecialchars($result);
} else {
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
$contentType = curl_getinfo($ch, CURLINFO_CONTENT_TYPE);
curl_close($ch);