rest_application_password_check_errors
函数
rest_application_password_check_errors ( $result )
- 参数
-
-
(WP_Error|null|true)
$result
Error from another authentication handler, null if we should handle it, or another value if not.- Required: 是
-
(WP_Error|null|true)
- 返回值
-
- (WP_Error|null|true) WP_Error if the application password is invalid, the $result, otherwise true.
- 定义位置
-
-
wp-includes/rest-api.php
, line 1153
-
wp-includes/rest-api.php
- 引入
- 5.6.0
- 弃用
- –
Checks for errors when using application password-based authentication.
function rest_application_password_check_errors( $result ) { global $wp_rest_application_password_status; if ( ! empty( $result ) ) { return $result; } if ( is_wp_error( $wp_rest_application_password_status ) ) { $data = $wp_rest_application_password_status->get_error_data(); if ( ! isset( $data['status'] ) ) { $data['status'] = 401; } $wp_rest_application_password_status->add_data( $data ); return $wp_rest_application_password_status; } if ( $wp_rest_application_password_status instanceof WP_User ) { return true; } return $result; }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。