WP_REST_Application_Passwords_Controller::get_application_password() WordPress Method
The WP_REST_Application_Passwords_Controller::get_application_password() method is used to retrieve an application password for a given user. This can be used to allow access to certain areas of the website for a specific application, without needing to provide a full set of credentials.
WP_REST_Application_Passwords_Controller::get_application_password( WP_REST_Request $request ) #
Gets the requested application password for a user.
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; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
5.6.0 | Introduced. |