WP_REST_Application_Passwords_Controller::get_application_password( WP_REST_Request $request )
Gets the requested application password.
Parameters
- $request
-
(WP_REST_Request) (Required) The request object.
Return
(array|WP_Error) The application password details if found, a WP_Error otherwise.
Source
File: wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php
protected function get_application_password( $request ) { $user = $this->get_user( $request ); if ( is_wp_error( $user ) ) { return $user; } $password = WP_Application_Passwords::get_user_application_password( $user->ID, $request['uuid'] ); if ( ! $password ) { return new WP_Error( 'rest_application_password_not_found', __( 'Application password not found.' ), array( 'status' => 404 ) ); } return $password; }
Changelog
Version | Description |
---|---|
5.6.0 | Introduced. |
© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_rest_application_passwords_controller/get_application_password