# 把玩家踢下线 ## 描述 > 此功能允许运营商通过接口将玩家踢下线 > 请求方式( Host-> BeSoft):post > 编码方式:application/x-www-form-urlencoded > Besoft响应的数据格式是: application/json ## 网址 > {besoftapi}/api/game/logout ## 请求参数 | 名称 | 类型 | 必要 | 描述 | | ---------- | ------ | ---- | ---------| | extension1 | String | Y | 代理账号 | | cert | String | Y | 安全代码 | | user | String | N | 被踢除玩家账号 | ## 示例 - URL: - http://127.0.0.1:8000/api/game/logout - HTTP Method - POST - 表单数据 > Content-Type: application/x-www-form-urlencoded ``` cert:v8VMKKzlPpD0te4rX99Hgefs3PQrBFWJKiuUqg6Y extension1:adminweb user:Guest492 ``` ## 返回结果 |名称| 类型 | 描述 | |--------|----------|--------| |status| Int32 |状态代码| |erro| Int32 |错误码| ## 成功的结果 ```json { "status": 1 } ``` ## 失败的结果 ``` { "erro": 1042 } ```