在uni-app里使用identity server4登录

2021/5/4 10:25:23

本文主要是介绍在uni-app里使用identity server4登录,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

服务器端配置:

                    Client oneResult = new Client
                    {
                        ClientId = "localHtml",
                        ClientName = "test",
                        AllowedGrantTypes = GrantTypes.ResourceOwnerPassword,
                        ClientSecrets = { new Secret("1".Sha256()) },
                        AllowOfflineAccess = true,
                        RequireConsent = false,
                        RequireClientSecret = false,
                        AllowedScopes = { "openid", "sid" },
                        AuthorizationCodeLifetime = 36000,
                        IdentityTokenLifetime = 36000,
                        UserSsoLifetime = 36000
                    };

 

uni端调用:

                        uni.request({
                            url: baseUrl + '/connect/token',
                            method: 'POST',
                            header: {
                                'content-type': "application/x-www-form-urlencoded"
                            },
                            data: {
                                    username: this.user_name,
                                    password: this.password,
                                    grant_type: 'password',
                                    client_id: 'localHtml'
                            },
                            success: res => {
                                    console.log(res);
                                    if (res.statusCode === 200) {
                                        uni.setStorageSync('access_token', res.data.token_type + ' ' + res.data.access_token);
                                        uni.setStorageSync('user_name', this.user_name);
                                        uni.showToast({
                                            icon: 'none',
                                            title: '登录成功! '
                                        })
                                    } else {
                                        uni.showToast({
                                            icon: 'none',
                                            title: '登录失败! ['+res.statusCode+"] 请检查用户名/密码是否输入正确,或手机网络!",
                                            duration:3000
                                        })
                                    }
                            },
                            fail(e) {
                                console.log(e);
                            }
                        })

 



这篇关于在uni-app里使用identity server4登录的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程