- 申请服务号打款的界面关闭了,在哪里看腾讯对公的银行账号?
申请服务号打款的界面关闭了,在哪里看腾讯对公的银行账号?
05-22 - 为什么生成的链接提示需要手机打开?
我现在正在开发三方网站绑定微信的功能,客户端请求后,生成绑定的链接,这是服务端代码; @Override @NoCheck public Response getQRCodeUrl(String appId,String userAction) throws UnsupportedEncodingException { List<AppMap> appMaps = sysAppMapService.getAppMapByAppId("bind".equals(userAction)? RequestContext.getAppId() :appId, AccountType.WECHAT); if (CollectionUtils.isEmpty(appMaps) || appMaps.size() > 1) { throw GlobalException.PARAM_VERIFY_EXCEPTION; } String referer = request.getHeader("Referer"); String redirectUrl = appMaps.get(0).getLoginSuccessRedirectUrl(); if (!HttpUtil.verifyRefer(referer, redirectUrl)) { throw GlobalException.PARAM_VERIFY_EXCEPTION; } wxMpService.switchoverTo(appMaps.get(0).getThirdAppId()); if("bind".equals(userAction)){ String url = wxMpService.getOAuth2Service() .buildAuthorizationUrl(appMaps.get(0).getLoginRedirectUrl(),"snsapi_userinfo", URLEncoder.encode("bind_wechat", "UTF-8")); return new Response(url); }else{ String url = wxMpService.buildQrConnectUrl(appMaps.get(0).getLoginRedirectUrl(), "snsapi_login", MD5Utils.getRandomCode()); return new Response(url); } } 为什么生成的链接提示需要在手机上打开?我需要让用户扫描生成的二维码。这是生成的链接: https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx52de1d519638b502&redirect_uri=https%3A%2F%2Fcv.poemhub.top%2Fpost%2Fwechat%2Flogin%2FalipayCallBack&response_type=code&scope=snsapi_userinfo&state=bind_wechat&connect_redirect=1#wechat_redirect
2023-06-11 - 为什么无法打开二维码登录链接?
现在正在开发扫描网页二维码登录网站的功能,这是第一步请求生成的链接,此链接会在网页上显示二维码,用户扫码登录网站,但是生成的无法打开,也不显示二维码,我用的是新申请的测试账号,已经有网页登录的权限 https://open.weixin.qq.com/connect/qrconnect?appid=wx13c9c054bddea3c8&redirect_uri=https%3A%2F%2Fread.poemhub.top%2F&response_type=code&scope=snsapi_login&state=86T3hF#wechat_redirect 应该怎样才能修复这个问题啊。
2023-03-04