## 移动通信 >[danger]### 会员接口,仅限会员使用,购买[API会员](https://market.topthink.com/product/210) ![](https://img.kancloud.cn/61/c6/61c6c25cd51d4a4d2dfcb769c0578702_200x200.png) >移动互联网通信行业资讯API ## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086)) ### 请求地址 ``` GET https://api.topthink.com/news/mobile ``` ### 请求参数 | 名称 | 类型 | 必填 | 说明 | | --- | --- | --- | --- | | 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->newsMobile() ->withNum(10) ->request(); ``` 返回示例: ~~~ { "code":0, "message": "成功", "data": [ { "ctime":"2019-03-20 14:02", "title":"抖音总裁张楠:腾讯让我删除多闪上自己的头像昵", "description":"移动互联", "picUrl":"http://cms-bucket.ws.126.net/2019/03/20/b5c094b61e6c4268ad45610d541b8e4c.png?imageView&thumbnail=200y140", "url":"http://tech.163.com/19/0320/14/EANFGH4500097U7R.html" }, { "ctime":"2019-03-20 13:49", "title":"阿里AIlabs成立方言保护小组,投1亿元保护方言", "description":"移动互联", "picUrl":"http://cms-bucket.ws.126.net/2019/03/20/91416aa5a1e84823bb73ac9acab1fd15.png?imageView&thumbnail=200y140", "url":"http://tech.163.com/19/0320/13/EANENQ0000097U7R.html" }, { "ctime":"2019-03-20 13:43", "title":"法院裁定:抖音多闪立即停止共享微信用户信息等", "description":"移动互联", "picUrl":"http://cms-bucket.ws.126.net/2019/03/20/2019c029841e4ce6b96ae827bff41b0c.png?imageView&thumbnail=200y140", "url":"http://tech.163.com/19/0320/13/EANEDNMM00097U7R.html" } ] } ~~~