科技新闻
最后更新于:2022-04-02 08:21:13
## 科技新闻
>[danger]### 会员接口,仅限会员使用,购买[API会员](https://market.topthink.com/product/210)
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/30/cf/30cf643038c2520c8528000387053e50_236x200.png)
>信息科技一般指用于管理和处理信息所采用的各种技术的总称,如互联网科技、数据科技、软件科技等等。调用该接口,会输出该行业的所有新闻动态。
## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086))
### 请求地址
```
GET https://api.topthink.com/news/keji
```
### 请求参数
| 名称 | 类型 | 必填 | 说明 |
| --- | --- | --- | --- |
| 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->newsKeji()
->withNum(10)
->request();
```
返回示例:
~~~
{
"code":0,
"message": "成功",
"data": [
{
"ctime":"2019-03-20 15:15",
"title":"黄仁勋回应7nm显卡“缺席”:英伟达的优秀不靠它",
"description":"腾讯科技",
"picUrl":"http://inews.gtimg.com/newsapp_ls/0/8220975964_300240/0",
"url":"http://new.qq.com/omn/20190320A0FAKZ.html"
},
{
"ctime":"2019-03-20 14:22",
"title":"苹果AppStore涉嫌垄断惹众怒,卡巴斯基已提交投诉",
"description":"腾讯科技",
"picUrl":"http://inews.gtimg.com/newsapp_ls/0/8220812747_300240/0",
"url":"http://new.qq.com/omn/20190320A0EX1W.html"
},
{
"ctime":"2019-03-20 14:16",
"title":"专访谷歌云游戏负责人:Stadia将永远改变游戏行业",
"description":"腾讯科技",
"picUrl":"http://inews.gtimg.com/newsapp_ls/0/8220201651_300240/0",
"url":"http://tech.qq.com/a/20190320/006134.htm"
}
]
}
~~~
';