稳定、快速、免费的 API 接口服务
梦也许预示着某种含义
接口地址: https://58.linkpc.net/doc/dream.html
返回格式: JSON
请求方式: GET/POST
请求示例: https://58.linkpc.net/api/dream?num=1&word=河水
请求参数说明:
名称 | 必填 | 类型 | 说明 |
---|---|---|---|
num | 是 | int | 返回数量 |
page | 否 | int | 翻页 |
word | 是 | String | 搜索词 |
返回参数说明:
名称 | 类型 | 说明 |
---|---|---|
id | int | 数据ID |
type | String | 类型 |
title | String | 标题 |
result | String | 内容 |
返回示例:
{
"code": 200,
"msg": "success",
"data": {
"curpage": 1,
"allnum": 1,
"list": [
{
"id": 15738,
"type": "综合类",
"title": "河水很急",
"result": " 梦见河水很急,河代表了现实生活中出现的过渡或者变化河水很急,说明环境的不安稳船反映一种新的开始,自己选择加入的环境但漏了,这表示意识到那个环境中存在的隐患,不足以面对生活中的不安稳因素大家又回岸,说明放弃原来的计划,想法发大水,在梦境中多是反映注意到生活发生变化,且不是自己可以控制的类型。"
}
]
}
}
错误码格式说明:
名称 | 类型 | 说明 |
---|
代码示例:
<?php
header('Content-type: application/json; charset=utf-8');
date_default_timezone_set('PRC');
$url = 'https://58.linkpc.net/api/dream';
$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);