ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
>[info] 小程序登录授权接口 **请求地址:** /api/wx.user/login **请求方式:** POST **返回格式:** JSON **参数说明:** | 参数 | 类型 | 说明 | 示例 | | :---: | :---: | :---:| :---:| | code | String | 用于获取 openid | 043ytTkls | | user_info | Object | 用户公开信息 | {"nickName":"翠花i","gender":1,"language":"zh_CN","city":"黔东南","province":"贵州","country":"中国","avatarUrl":"头像url"} | **成功示例:** >[info] 获取热门资讯列表(添加数据更新缓存) **请求地址:** /api/wx.information/getInformation **请求方式:** GET **返回格式:** JSON **返回参数说明:** | 参数 | 说明 | | :---: | :---: | | title | 标题 | | poster_url | 主图图片url | | comefrom_name | 发布人 | | content | 主体内容 | | createtime | 发布时间 | **返回示例:** ``` { "code": 1, "msg": "成功", "time": "1632463798", "data": [ { "title": "test", "poster_url": "/uploads/20210817/FhN3lVkBAq5M2CVuYhtH9_BubXuE.png", "comefrom_name": "个人", "content": "test", "createtime": 1629180932 }, { "title": "汽车分类", "poster_url": "/uploads/20210817/FuVX6I1CohnQDxqaVn9Pi90SA6DM.png", "comefrom_name": "个人", "content": "主体", "createtime": 1629178987 } ] } ``` >[info] 获取政策公告列表(添加数据更新缓存) **请求地址:** /api/wx.policy_notice/getNotice **请求方式:** GET **返回格式:** JSON **返回示例:** ~~~ { "code": 1, "msg": "成功", "time": "1632464681", "data": [ { "title": "test2", "content": "test2", "createtime": 1629183940 }, { "title": "test1", "content": "test1", "createtime": 1629183940 }, { "title": "test", "content": "<strong>test</strong>", "createtime": 1629183940 } ] } ~~~