娱乐新闻
最后更新于:2022-04-02 08:21:23
## 娱乐新闻
>[danger]### 会员接口,仅限会员使用,购买[API会员](https://market.topthink.com/product/210)
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/55/71/55713c1dc83b81e15b2ba7441b65854d_200x200.png)
>娱乐新闻资讯,明星花边、探班、娱乐活动等。
## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086))
### 请求地址
```
GET https://api.topthink.com/news/fun
```
### 请求参数
| 名称 | 类型 | 必填 | 说明 |
| --- | --- | --- | --- |
| appCode| string| 是|用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) |
| num | int | 是 | 返回数量1-50,默认10 |
| page | int | 否 | 翻页 |
| word | string | 否 |检索关键词 |
### 返回`data`参数
| 名称 | 类型 | 说明 |
| --- | --- | --- |
| ctime | string | 时间 |
| title | string | 标题 |
| description | string | 描述 |
| picUrl | string | 封面 |
| url | string | 链接 |
## SDK调用
```
$client = new Client("YourAppCode");
$result = $client->newsFun()
->withNum(10)
->request();
```
返回示例:
~~~
{
"code":0,
"message": "成功",
"data": [
{
"ctime":"2019-03-2015:55",
"title":"林依晨晒度假日常活成了最舒服的样子",
"description":"网易明星",
"picUrl":"http://imgsize.ph.126.net/?imgurl=http://cms-bucket.ws.126.net/2019/03/20/eb6c93aef2f94542875db282610b80a6.png_130x90x1x85.jpg",
"url":"http://ent.163.com/19/0320/15/EANLTMF3000380BQ.html"
},
{
"ctime":"2019-03-2015:29",
"title":"苍井空公开大肚写真透露父亲是双胞胎有好基因",
"description":"网易明星",
"picUrl":"http://imgsize.ph.126.net/?imgurl=http://cms-bucket.ws.126.net/2019/03/20/3fbcf76d74754cd2aec61e6a970ef9fa.png_130x90x1x85.jpg",
"url":"http://ent.163.com/19/0320/15/EANKF4FF00038FO9.html"
},
{
"ctime":"2019-03-2015:21",
"title":"张艺兴新剧热播颜值在线聚焦传统文化获官媒点赞",
"description":"网易明星",
"picUrl":"http://imgsize.ph.126.net/?imgurl=http://cms-bucket.ws.126.net/2019/03/20/c22818739aea46c79b6f020f1e945af7.png_130x90x1x85.jpg",
"url":"http://ent.163.com/19/0320/15/EANK0GI5000380BQ.html"
}
]
}
~~~
';