- 关于XXE漏洞问题,我不需要通知地址怎么办?
对于支付后,我方程序不需要收到通知. 也就是说 商户server调用支付统一下单,api参见公共api【统一下单API】 通知地址notify_url这个值,我是否可以填未使用的地址?无效URL. 我这边是通过"微信支付商家助手" 来得到付款信息通知.
2019-04-18 - 关于XXE漏洞问题,我不需要通知地址怎么办?
对于支付后,我方程序不需要收到通知. 也就是说 商户server调用支付统一下单,api参见公共api【统一下单API】 通知地址notify_url这个值,我是否可以填未使用的地址?无效URL. 我这边是通过"微信支付商家助手" 来得到付款信息通知.
2019-04-17 - "统一下单"API调用问题,测试,开发环境都可行,正式环境却无法发起支付
没有架设服务器,纯纯的小程序. 在测试环境开发环境.都可以发起支付成功. 一到正式环境,就无法发起支付. 搜索了一圈,说是正式环境不支持https请求. 文档却要求: 统一下单应用场景商户在小程序中先调用该接口在微信支付服务后台生成预支付交易单,返回正确的预支付交易后调起支付。 接口链接URL地址:https://api.mch.weixin.qq.com/pay/unifiedorder 那么这个URL又无法配置到白名单. 怎么解决?
2019-04-12 - 安卓微信调用cloud.uploadFile发生错误
- 当前 Bug 的表现(可附上截图) uploadAndCutPic.js? [sm]:388 [上传文件] 失败: Error: errCode: -1 | errMsg: cloud.uploadFile:fail uploadFile:fail SSL handshake aborted: ssl=0x6d5bf058: I/O error during system call, Connection reset by peer; at cloud.uploadFile api; [图片] - 预期表现 ios微信版本没有这个问题. - 复现路径 - 提供一个最简复现 Demo // 上传图片 doUpload: function () { // 选择图片 wx.chooseImage({ count: 1, sizeType: ['compressed'], sourceType: ['album', 'camera'], success: function (res) { wx.showLoading({ title: '上传中', }) const filePath = res.tempFilePaths[0] // 上传图片 const cloudPath = 'my-image' + filePath.match(/\.[^.]+?$/)[0] wx.cloud.uploadFile({ cloudPath, filePath, success: res => { console.log('[上传文件] 成功:', res) app.globalData.fileID = res.fileID app.globalData.cloudPath = cloudPath app.globalData.imagePath = filePath wx.navigateTo({ url: '../storageConsole/storageConsole' }) }, fail: e => { console.error('[上传文件] 失败:', e) wx.showToast({ icon: 'none', title: '上传失败', }) }, complete: () => { wx.hideLoading() } }) }, fail: e => { console.error(e) } }) },
2019-02-13