"https://api.weixin.qq.com/sns/oauth2/access_token?appid=" + _appid + "&secret=" + _secret + "&code=" + code + "&grant_type=authorization_code";
请求返回access_token之后,在请求
https://api.weixin.qq.com/cgi-bin/qrcode/create?access_token=返回的token
错误码40001
这是为什么呢
因为你获取到的access_token,是授权登录的,而不是服务端API的。
请用
https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=APPID&secret=APPSECRET
来获取服务端API的access_token