开发中所有https接口用Postman能访问,用小程序就不能访问
有人对https比较熟的吗
我的https接口用postman能访问,但是小程序就访问不了
接口如下
https://www.rqcf.net/api/RiskManagementAPI/Getall?pageindex=1
用GET方法


请求代码如下:
wx.request({
url: ‘https://www.rqcf.net/api/RiskManagementAPI/Getall?pageindex=1’,
data: {},
method: ‘GET’,
header: {
‘content-type’: ‘application/json’,
},
success: function (res) {
console.log(“res”, res);
}
});