小程序
小游戏
企业微信
微信支付
扫描小程序码分享
比如有一个用户A已经在小程序上登录了,我已经获取到了openid,并且也关注了这个公众号,可以通过小程序openid去获取公众号的openid吗?
求大佬解惑,谢谢!
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
只能通过unionId进行两边的用户关联,不可以通过小程序openid去获取公众号的openid
可以在小程序里,通过网页授权的方法获取到对应公众号的openId
https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/Wechat_webpage_authorization.html
这个你怎么不用unionId呢?
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
只能通过unionId进行两边的用户关联,不可以通过小程序openid去获取公众号的openid
https://developers.weixin.qq.com/community/develop/doc/00002c79bf8b50a6aeca677f45f400
public static String getGZHOpenId(String code) throws Exception{
CloseableHttpClient httpclient = HttpClients.createDefault();
//发送get请求读取调用微信 https://api.weixin.qq.com/sns/jscode2session
HttpGet httpget = new HttpGet(https://api.weixin.qq.com/sns/oauth2/access_token?appid= + ”appid“ + secret=“secret“ + code=”code“ + grant_type=authorization_code);
CloseableHttpResponse response = httpclient.execute(httpget);
HttpEntity entity = response.getEntity();
JSONObject jsonObject = JSON.parseObject(EntityUtils.toString(entity));
return jsonObject.getString("openid");
}
可以在小程序里,通过网页授权的方法获取到对应公众号的openId
https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/Wechat_webpage_authorization.html
这个你怎么不用unionId呢?