wx.request,为什么返回403?
wx.request({ url: https_url, //https_url是https的,在普通浏览器中可以正常访问。并且在小程序平台进行了域名绑定 headers: {'Content-Type': 'application/json'}, data: {code:12}, method: 'GET', success: function(result){ console.log(result); } }); 服务器在阿里云上:echo $_GET['code']; 问题: 在微信web开发者工具中运行小程序,返回403。这是什么原因?