# springboot-weapp-demo **Repository Path**: laputaqsh/springboot-weapp-demo ## Basic Information - **Project Name**: springboot-weapp-demo - **Description**: 微信小程序服务端接口,支持普通Http请求、上传文件、长连接。 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-02-23 - **Last Updated**: 2021-02-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # springboot-weapp-demo 微信小程序服务端接口,支持普通Http请求、上传文件、长连接,微信登录及敏感数据解密。后台服务使用springboot框架搭建,mongodb做数据库,redis做缓存。 运行环境:JDK8+ 注意:如果你是本地运行,需要修改为你本地对应的主机和端口。 长连接需使用ws协议 ####更新日志: - 2016-12-18 - 拦截器记录口访问日志存储mongodb - 2016-11-24 - 小程序code换取session_key和openid - 小程序登录用户敏感数据解密 - 2016-11-22 - 配置Https - 2016-11-18 - 重写小程序http测试和上传文件接口 - 统一接口返回返回状态码和格式 - 2016-11-20 - 添加Redis缓存 - 添加微信登录状态维护和用户数据解密接口 #### 一、测试小程序wx.request接口 ```javascript wx.request({ url: 'http://localhost:9090/weappservice/api/v1/user/get/{id}', data: {appId: 'JWEJIJ345QHWJKENVKF', apiName: 'GET_USER'}, method: 'GET', //return JSON format,like: {"id":"{id}"} success: function(res){ console.log(res.data); }, fail: function(res){ }, complete: function(res){ } }); ``` #### 二、测试小程序wx.uploadFile接口,单张上传 ```javascript wx.uploadFile({ url: 'http://localhost:9090/weappservice/api/v1/upload/image', //文件临时路径 filePath: tempFilePath, name: 'file', header: {}, formData: {appId: 'JWEJIJ345QHWJKENVKF', apiName: 'UPLOAD_IMAGE'}, success: function(res){ console.log(res.data) }, fail: function(res){ }, complete: function(res){ } }); ```
状态码(errcode) | 说明(msg) |
---|---|
0 | 图片路径 |
40010 | 请选择上传文件! |
40011 | 文件上传失败 |