🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
### 接口名称 Oauth/get_other_login_info ### 接口描述 记录或获取第三方登录接口获取到的信息 ### 请求地址 http://URL/Oauth/get_other_login_info ### 输入参数 ~~~ (string)uname 用户名 (string) type 帐号类型 (string) type_uid 第三方用户标识 (string) face 第三方头像URL (string) access_token 第三方access token (string) refresh_token 第三方refresh token(选填,根据第三方返回值) (string) expire_in 过期时间(选填,根据第三方返回值) (string) format,返回格式可选 json/php/test格式(默认json格式,为了阅读方便,以下文档中输出结果均以test格式显示) ~~~ ### 输出结果 成功 ~~~ { "status":1, "msg": { "store_status": "1", "oauth_token": "eadc2d40b3ea5e24ef099b79bacc2d86", "oauth_token_secret": "d718fd01e96bc69cecc5297e86a11e96", "uid": "1", "uname": "你猜猜T", "password": "d46b5dd007cca4ad3ee2a521dd26dcb3", "face": "http://demo-coutuan123.b0.upaiyun.com/avatar/c4/ca/42/original.jpg!middle.avatar.jpg?v1434019465", "last_login_time": "2015-06-24 16:43:34" } } ~~~ 失败: ~~~ { "status": 0, "msg": "参数错误" } ~~~ ### 字段说明 成功时 ~~~ status 判断用户是否已绑定 1表示绑定 0 未绑定 uid:用户UID oauth_token:用户oauth_token oauth_token_secret:用户oauth_token_secret store_status 店铺状态( 1 开通成功 2 等待审核 3 审核失败 4 未开通)目前只针对B端有用,C端暂时用不到 password 密码 face 头像 last_login_time 上次登录时间 ~~~ ### 其他说明 ~~~ 1. 双重加密是先进行MD5加密,在进行DES加密。加密的key用request_key。 2. oauth_token和oauth_token_secret为API每次请求必带参数 ~~~