[comment]: # ({558a988d-558a988d})
# authentication.get

[comment]: # ({/558a988d-558a988d})

[comment]: # ({f493fd10-f493fd10})
### 描述

`object authentication.get(object parameters)`

该方法允许根据给定参数获取认证object。

::: noteclassic
此方法仅适用于*超级管理员*用户类型。
调用该方法的权限可在用户角色设置中撤销。详见
[User
roles](/manual/web_interface/frontend_sections/administration/user_roles)
获取更多信息。

:::

[comment]: # ({/f493fd10-f493fd10})

[comment]: # ({5b891309-24b20f8d})
### 参数

`(object)` 定义所需输出的参数。

该方法仅支持一个参数。

| 参数 | [数据类型](/manual/api/reference_commentary#数据类型) | 描述 |
|--|--|------|
| output | query | 该参数在[通用get方法参数](/manual/api/reference_commentary#通用get方法参数)中有描述。 |

[comment]: # ({/5b891309-24b20f8d})

[comment]: # ({6394c247-6394c247})
### 返回值

`(object)` 返回认证object。

[comment]: # ({/6394c247-6394c247})

[comment]: # ({8e52f573-cad6afa3})
### 示例

请求:

```json
{
    "jsonrpc": "2.0",
    "method": "authentication.get",
    "params": {
        "output": "extend"
    },
    "auth": "038e1d7b1735c6a5436ee9eae095879e",
    "id": 1
}
```
响应:

```json
{
    "jsonrpc": "2.0",
    "result": {
        "authentication_type": "0",
        "http_auth_enabled": "0",
        "http_login_form": "0",
        "http_strip_domains": "",
        "http_case_sensitive": "1",
        "ldap_configured": "0",
        "ldap_host": "",
        "ldap_port": "389",
        "ldap_base_dn": "",
        "ldap_search_attribute": "",
        "ldap_bind_dn": "",
        "ldap_case_sensitive": "1",
        "ldap_bind_password": "",
        "saml_auth_enabled": "0",
        "saml_idp_entityid": "",
        "saml_sso_url": "",
        "saml_slo_url": "",
        "saml_username_attribute": "",
        "saml_sp_entityid": "",
        "saml_nameid_format": "",
        "saml_sign_messages": "0",
        "saml_sign_assertions": "0",
        "saml_sign_authn_requests": "0",
        "saml_sign_logout_requests": "0",
        "saml_sign_logout_responses": "0",
        "saml_encrypt_nameid": "0",
        "saml_encrypt_assertions": "0",
        "saml_case_sensitive": "0",
        "passwd_min_length": "8",
        "passwd_check_rules": "8"
    },
    "id": 1
}
```

[comment]: # ({/8e52f573-cad6afa3})

[comment]: # ({b8be0c1f-b8be0c1f})
### 来源

CAuthentication::get() 位于
*ui/include/classes/api/services/CAuthentication.php* 文件中.

[comment]: # ({/b8be0c1f-b8be0c1f})
