注销操作

步骤说明

由于不同应用接入同一SSO,一个应用验证成功后,有效期内,其它系统不需验证即可登录。 同理,当用户在一个应用注销时,应该通知SSO,统一注销。以防两点,一,用户再次登录SSO还会登录同一用户, 二,用户登录其它用户还可以登录,且还是原用户。 因此,应用注销操作一定要调用SSO注销接口,同时在应用内部实现注销。

请求地址

https://authtest.hengchanglt.com/logout

请求方式

POST(服务器直接请求)

参数说明

参数名称 参数类型 是否必须 参数说明
access_token string 必须 应用使用auth_code交换到的接入码

返回结果

成功

{
    "code":200,
    "errmsg":"sucess",                 #报错信息
    "data":""                          #出错的数据
}

出错

{
    "code":400,
    "errmsg":"access_token is not exist",    #报错信息
    "data":"test_access_token"               #出错的数据
}

调用样例

请求url:https://authtest.hengchanglt.com/logout
请求data: {"access_token":"testaccess_token"}
返回结果:{"code":200,"errmsg":"sucess","data":""}

results matching ""

    No results matching ""