justauth / JustAuth

🏆Gitee 最有价值开源项目 🚀:100: 小而全而美的第三方登录开源组件。目前已支持Github、Gitee、微博、钉钉、百度、Coding、腾讯云开发者平台、OSChina、支付宝、QQ、微信、淘宝、Google、Facebook、抖音、领英、小米、微软、今日头条、Teambition、StackOverflow、Pinterest、人人、华为、企业微信、酷家乐、Gitlab、美团、饿了么、推特、飞书、京东、阿里云、喜马拉雅、Amazon、Slack和 Line 等第三方平台的授权登录。 Login, so easy!
https://www.justauth.cn
MIT License
16.52k stars 2.78k forks source link

request help: 如何实现静默登录? #170

Closed cxh1231 closed 3 months ago

cxh1231 commented 1 year ago

如何通过JustAuth,实现微信端的静默登录?

即通过微信公众平台,只获取到用户的OpenID即可,不弹窗索取用户的详细信息

zhangyd-c commented 3 months ago
authRequest = new AuthWeChatMpRequest(AuthConfig.builder()
                        .clientId("")
                        .clientSecret("")
                        .redirectUri("")
                        .scopes(Arrays.asList(
                                AuthWechatMpScope.SNSAPI_BASE.getScope()
                        ))
                        .build());

如上,指定 scope 为 snsapi_base 即可