小程序
小游戏
企业微信
微信支付
扫描小程序码分享
如题,在网上看到说云函数可以使微信小程序访问http,试了后也只有在本地调试的时候才可以成功访问到,关了或者在真机上都不能实现,该怎么办?
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
同问
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
本地代码 wx.cloud.callFunction({ name: 'Login', data: { URL: 'http://xxxxxxx.com', headers: { 'Content-Type': 'application/x-www-form-urlencoded', 'Accept-Encoding': 'gzip, deflate', 'Accept-Language': 'en-us', 'Accept': 'text / html, application/xhtml+xml,application/xml; q=0.9, image/webp,image/apng, */*;q=0.8,application/signed-exchange;v=b3;q=0.9', 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', }, methor: 'GET' } }).then(res => { console.log(res) }) //---------------------------- 云函数代码 exports.main = async (event, context) => { return await request({ url: event.URL, method: event.methor, json: true, headers: event.headers, qs: event.data_, }).then(res => { if(res.result.statusCode == 200){ if (res.result.data.find('账号密码验证失败')){ return 'id or pas wrong' }else{ return res } } else if (res.result.statusCode == 302) return res else return res }).catch(res => { return res }) }
能先亮代码,大佬
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
同问
本地代码 wx.cloud.callFunction({ name: 'Login', data: { URL: 'http://xxxxxxx.com', headers: { 'Content-Type': 'application/x-www-form-urlencoded', 'Accept-Encoding': 'gzip, deflate', 'Accept-Language': 'en-us', 'Accept': 'text / html, application/xhtml+xml,application/xml; q=0.9, image/webp,image/apng, */*;q=0.8,application/signed-exchange;v=b3;q=0.9', 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', }, methor: 'GET' } }).then(res => { console.log(res) }) //---------------------------- 云函数代码 exports.main = async (event, context) => { return await request({ url: event.URL, method: event.methor, json: true, headers: event.headers, qs: event.data_, }).then(res => { if(res.result.statusCode == 200){ if (res.result.data.find('账号密码验证失败')){ return 'id or pas wrong' }else{ return res } } else if (res.result.statusCode == 302) return res else return res }).catch(res => { return res }) }
能先亮代码,大佬