目前三种获取openid接口
1、$url = “https://api.weixin.qq.com/sns/oauth2/access_token?appid=$appid&secret=$appsecret&code=$code&grant_type=authorization_code”;
2、$url = “https://api.weixin.qq.com/sns/oauth2/component/access_token?appid=$appid&secret=$appsecret&code=$code&grant_type=authorization_code”;
3、$url = “https://api.weixin.qq.com/sns/jscode2session?appid=$appid&secret=$appsecret&js_code=$code&grant_type=authorization_code”;
小程序使用我wx.login获取的code传送给后端,而后端可以用/sns/oauth2/access_token无法获取openid
还是说必须只能使用jscode2session方式?component方式用在哪呢?app?
小程序上获取openid是不是就必须使用小程序的appid?不能用公众号的appid?