- ios微信分支功能正常,分享失败?
同一app中,微信支付功能成功,分享是拉起微信,显示正在连接,过几秒又重新返回app? 搜索问题时有说是universal link配置不对,于是打开微信日志执行到4, 1就没有了,下面还可以看到:wxlog:Successfully starting WeChat with the universal link. 说这个配置是对的,而且微信支付功能是ok的。于是就不知道是什么问题了。调用分享是日志:wxlog:Error:fail to load Keychain status:-25300, keyData null:1 请问是什么问题?如何解决?
2023-10-27 - 小程序网络请求问题报错?
const res = await wx.cloud.callContainer({ config: { env: 'xxxx', }, path: '/vi/user', data:{'name':'中国'}, method: 'POST', header: { 'X-WX-SERVICE': 'xxx', "Content-Type": 'application/json; charset=utf-8' }, }); 如上代码请求服务器接口报错:ReferenceError: url is not defined 但是如果吧参数拼在url后面 如:/vi/user?name=中国 ,就可以请求成功! 请问是哪里出了问题,初入小程序开发,请详细回答
2023-05-19 - 在使用java服务上传文件到云托管 返回 MethodNotAllowed,如何处理?
如题 第一步请求正常返回paramsBody 第二不请求具体代码实现如下: Map<String, String> params = new HashMap<>(); params.put("key", filePath); params.put("Signature", paramsBody.get("authorization").toString()); params.put("x-cos-security-token", paramsBody.get("token").toString()); params.put("x-cos-meta-fileid", paramsBody.get("cos_file_id").toString()); params.put("file", Base64.getEncoder().encodeToString(FileToByte(fileObj))); Map<String, String> headers = new HashMap<>(); headers.put("Content-Type", "multipart/form-data"); String jsonStr = HttpKit.post(paramsBody.get("url").toString(), params, headers); logger.info(jsonStr); 在这里拿到的结果为MethodNotAllowed 请帮忙分析下是什么原因?
2023-05-09 - 小程序上传,体验版本接口请求一直加载?
使用wepy开发小程序,java服务端放到微信云托管上,开发过程接口能正常请求拿到数据,打包上传后 扫描体验版,发现请求的loading一直转 那不到数据。请问是什么情况?
2023-03-28 - universal Links已经成功唤起app,但是不知道如何获取参数
https://developers.weixin.qq.com/doc/oplatform/Mobile_App/Access_Guide/iOS.html
2022-01-14