jfinal-weixin获取OPENID问题

发布于 2021-11-30 17:40:03 字数 2548 浏览 843 评论 1

@JFINAL 波总您好,想请教你一个问题,我参考jfinal-weixin里面的WeixinMsgController的MsgController的MsgInterceptor写了个拦截器,主要是用来判断是否能获取到参数code的,如果没有这个参数,我就调用微信那边的授权接口,现在code是能获取得到,但是用两个微信号访问时,获取OPENID时都获取了第一个微信号访问的OPENID,就是只能获取第一个微信号的OPENID,请问这个是什么情况呢?

下面是拦截器代码
public class BindInterceptor implements Interceptor {


    public void intercept(Invocation inv) {
        Controller controller = inv.getController();
        if (controller instanceof BindController == false)
            throw new RuntimeException("控制器需要继承 BindController");


        try {
            // 将 ApiConfig 对象与当前线程绑定,以便在后续操作中方便获取该对象: ApiConfigKit.getApiConfig();
            ApiConfigKit.setThreadLocalApiConfig(((BindController) controller).getApiConfig());
            // 判断请求的controller是否带有微信返回的code参数,如果没有就调用微信授权接口获取code参数
            if (controller.isParaBlank("code")) {
                final String scope = "snsapi_base";
                //当前正在访问的路径地址
                final StringBuffer requestPath = controller.getRequest().getRequestURL();
                //组装成微信接口调用地址
                String resultUrl = SnsAccessCodeApi.getCoode(requestPath.toString(), scope);
                try {
                    //请求微信接口地址
                    controller.getResponse().sendRedirect(resultUrl);
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            inv.invoke();
        } finally {
            ApiConfigKit.removeThreadLocalApiConfig();
        }
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

霞映澄塘 2021-12-01 07:12:29

怎么获取openid呀?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文