ONE一个
最后更新于:2022-04-02 08:22:55
## ONE一个
>[danger]### 会员接口,仅限会员使用,购买[API会员](https://market.topthink.com/product/210)
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/e9/39/e939c66a2fe3e51a505a9d988e585a2d_200x200.png)
> 韩寒主编的ONE一个杂志,本接口返回每日一句。
## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086))
### 请求地址
```
GET https://api.topthink.com/literary/one
```
### 请求参数
| 名称 | 类型 | 必填 | 说明 |
| --- | --- | --- | --- |
| appCode| string|是|用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) |
| rand | int | 否 | 是否随机 |
| date | string | 否 | 指定时间,格式年-月-日 默认当天 |
### 返回`data`参数
| 名称 | 类型 | 示例值 | 说明 |
| --- | --- | --- | --- |
| oneid | int | 2604 | ONE一个ID |
| word | string | 一个人就是一片荒原,偶尔有房客,有雷声,有春暖花开。 | 句子 |
| wordfrom | string | 《此刻,月光洒在中年的庭院》 | 句子来源 |
| imgurl | string | http://image.wufazhuce.com/FordKXIwo\_85nVFcvOn3TC8oZXXH | 配图 |
| imgauthor | string | Emilie Cotterill | 配图作者 |
| date | string | 2019-10-18 | 时间 |
## SDK调用
```
$client = new Client("YourAppCode");
$result = $client->literaryOne()
->request();
```
返回示例:
~~~
{
"code":0,
"message": "成功",
"data": [
{
"oneid":2604,
"word":"一个人就是一片荒原,偶尔有房客,有雷声,有春暖花开。",
"wordfrom":"《此刻,月光洒在中年的庭院》",
"imgurl":"http://image.wufazhuce.com/FordKXIwo_85nVFcvOn3TC8oZXXH",
"imgauthor":"EmilieCotterill",
"date":"2019-10-18"
}
]
}
~~~
';