!677 add 新增 对接 gitea 三方单点登录

* add 新增 对接 gitea 三方单点登录
This commit is contained in:
lcry
2025-05-12 02:07:46 +00:00
committed by 疯狂的狮子Li
parent 0c2fe34d92
commit 5a1523564b
10 changed files with 169 additions and 8 deletions

View File

@ -13,10 +13,10 @@ create table sys_social
nick_name varchar(30) default '' comment '用户昵称',
email varchar(255) default '' comment '用户邮箱',
avatar varchar(500) default '' comment '头像地址',
access_token varchar(255) not null comment '用户的授权令牌',
access_token varchar(2000) not null comment '用户的授权令牌',
expire_in int default null comment '用户的授权令牌的有效期,部分平台可能没有',
refresh_token varchar(255) default null comment '刷新令牌,部分平台可能没有',
access_code varchar(255) default null comment '平台的授权信息,部分平台可能没有',
access_code varchar(2000) default null comment '平台的授权信息,部分平台可能没有',
union_id varchar(255) default null comment '用户的 unionid',
scope varchar(255) default null comment '授予的权限,部分平台可能没有',
token_type varchar(255) default null comment '个别平台的授权信息,部分平台可能没有',