请教一下,你的问题解决了吗
H5 支付redirect_url 不跳转问题为什么指定了正确的地址 没有跳转呢 https://wx.tenpay.com/cgi-bin/mmpayweb-bin/checkmweb?prepay_id=wx21124514603893295e587fc51df0e30000&package=441441816&redirect_url=https%3A%2F%2Fm.zhuzhai.com%2Fdrawing%2Fpay%2FcheckOrder%3Forder_no%3D2020082112451316091445
2023-12-20处理完后返回结果是下面这样的,是否需要对"//"也进行处理呢[图片]
H5支付中 '&redirect_url='+redirect_url 没有跳转是为什么呢?[图片] 可以成功支付,但是点击完成后没有跳转到这个页面
2023-12-19qrcode_url = f'https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token={access_token}' page_path = 'pages/index/index' # 小程序页面路径,携带参数 qrcode_params = { 'path': page_path, 'scene':userID, 'width': width, 'is_hyaline': is_hyaline } qrcode_response = requests.post(qrcode_url, json=qrcode_params) print(qrcode_response) qrcode_data = qrcode_response.content # print(qrcode_data) encoded_qrcode = base64.b64encode(qrcode_data).decode('utf-8')
生成小程序二维码,前端本地调试通过二维码编译打开里面参数获取不到https://developers.weixin.qq.com/miniprogram/dev/OpenApiDoc/qrcode-link/qr-code/getUnlimitedQRCode.html # 替换为你的场景参数和其他参数 width = 180 is_hyaline = False # 获取 access token access_token = get_access_token2() print(access_token) # 生成不限制次数的小程序码 qrcode_url = f'https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token={access_token}' page_path = 'pages/index/index' # 小程序页面路径,携带参数 qrcode_params = { 'path': page_path, 'scene':userID, 'width': width, 'is_hyaline': is_hyaline }
2023-11-30