简要描述:

  • 获取第三方绑定列表接口

接口版本:

版本号 制定人 制定日期 修订日期
1.0.0 kevin 2020-01-18

请求URL:

请求方式:

  • GET

请求头:

参数名 是否必须 类型 说明
token string token参数

请求参数:

参数名 是否必须 类型 说明

返回示例:

正确时返回:

{
    "status": 200,
    "msg": "获取成功",
    "data": {
        "wx_app_openid": {
            "three_tig": "wx_app",
            "name": "微信",
            "bind_msg": "已绑定",
            "bing_status": true
        },
        "apple_openid": {
            "three_tig": "apple",
            "name": "苹果",
            "bind_msg": "未绑定",
            "bing_status": false
        },
        "qq_openid": {
            "three_tig": "qq",
            "name": "QQ",
            "bind_msg": "未绑定",
            "bing_status": false
        },
        "wb_openid": {
            "three_tig": "wb",
            "name": "微博",
            "bind_msg": "未绑定",
            "bing_status": false
        }
    }
}

错误时返回:

{
    "status": 0,
    "msg": "token过期",
    "data": []
}

data返回参数说明:

参数名 类型 说明
three_tig string 绑定标识
name string 第三方名称
bind_msg string 绑定信息
bing_status bool 绑定状态 true=已绑定,false=未绑定

备注:

作者:admin  创建时间:2020-01-18 15:50
 更新时间:2025-04-10 15:43