feat: add social auth

This commit is contained in:
xingyu
2022-07-21 18:58:52 +08:00
parent 3d1afe5271
commit f2d7500822
2 changed files with 22 additions and 0 deletions

View File

@ -62,3 +62,10 @@ export const sendSmsCodeApi = (data: SmsCodeVO) => {
export const smsLoginApi = (data: SmsLoginVO) => {
return request.post({ url: '/system/auth/sms-login', data })
}
// 社交授权的跳转
export const socialAuthRedirectApi = (type: string, redirectUri: string) => {
return request.get({
url: '/system/auth/social-auth-redirect?type=' + type + '&redirectUri=' + redirectUri
})
}