小程序
小游戏
企业微信
微信支付
扫描小程序码分享
开发者工具设置了 不校验安全域名、TLS 版本以及 HTTPS 证书
wx.uploadFile 依然会报 uploadFile:fail Error: self signed certificate
5 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
贴下域名
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
补充一下,目前好像只发现在上传文件跳不过校验,其他接口是可以用https://localhost:3000
我也遇到这样的问题,本地开发用的是https://localhost,设置了不校验还是会报自签名证书错误
this.app.prefix = "https://localhost:3000"
this.app.prefix = "
this
.app.prefix = "
this.wxapi
.wxapi
.chooseImage({
count: 1
})
.then(res => {
let { tempFilePaths } = res;
.wxapi.showLoading({
title:
"图片上传中……"
});
.wxapi.uploadFile({
url:
.app.prefix +
"/upload"
,
filePath: tempFilePaths[0],
name:
"file"
+
new
Date(),
}).then((res) => {
.wxapi.hideLoading();
let data = JSON.parse(res.data);
.setData({
photoUrl:
.app.prefix + data.picture,
picture: data.picture
最新版还是这样...
不管设置了不校验安全域名、TLS 版本以及 HTTPS 证书,
只要用了自签名证书, 上传文件都会返回错误
你好,请具体描述问题出现的流程,并提供能复现问题的截图,工具版本,以及简单代码示例。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
贴下域名
补充一下,目前好像只发现在上传文件跳不过校验,其他接口是可以用https://localhost:3000
我也遇到这样的问题,本地开发用的是https://localhost,设置了不校验还是会报自签名证书错误
https://localhost:3000"this
.app.prefix = "
this
.wxapi
.chooseImage({
count: 1
})
.then(res => {
let { tempFilePaths } = res;
this
.wxapi.showLoading({
title:
"图片上传中……"
});
this
.wxapi.uploadFile({
url:
this
.app.prefix +
"/upload"
,
filePath: tempFilePaths[0],
name:
"file"
+
new
Date(),
}).then((res) => {
this
.wxapi.hideLoading();
let data = JSON.parse(res.data);
this
.setData({
photoUrl:
this
.app.prefix + data.picture,
picture: data.picture
});
})
});
最新版还是这样...
不管设置了不校验安全域名、TLS 版本以及 HTTPS 证书,
只要用了自签名证书, 上传文件都会返回错误
你好,请具体描述问题出现的流程,并提供能复现问题的截图,工具版本,以及简单代码示例。