jfinal-weixin获取OPENID问题
@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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
怎么获取openid呀?