wp_xmlrpc_server::wp_getProfile( array $args ): array|IXR_Error

In this article

Retrieves information about the requesting user.

Parameters

$argsarrayrequired
Method arguments. Note: arguments must be ordered as documented.
  • int
    Blog ID (unused).
  • 1 string
    Username
  • 2 string
    Password
  • 3 array
    Optional. Fields to return.

Return

array|IXR_Error (@see wp_getUser)

Source

public function wp_getProfile( $args ) {
	if ( ! $this->minimum_args( $args, 3 ) ) {
		return $this->error;
	}

	$this->escape( $args );

	$username = $args[1];
	$password = $args[2];

	if ( isset( $args[3] ) ) {
		$fields = $args[3];
	} else {
		/** This action is documented in wp-includes/class-wp-xmlrpc-server.php */
		$fields = apply_filters( 'xmlrpc_default_user_fields', array( 'all' ), 'wp.getProfile' );
	}

	$user = $this->login( $username, $password );
	if ( ! $user ) {
		return $this->error;
	}

	/** This action is documented in wp-includes/class-wp-xmlrpc-server.php */
	do_action( 'xmlrpc_call', 'wp.getProfile', $args, $this );

	if ( ! current_user_can( 'edit_user', $user->ID ) ) {
		return new IXR_Error( 401, __( 'Sorry, you are not allowed to edit your profile.' ) );
	}

	$user_data = get_userdata( $user->ID );

	return $this->_prepare_user( $user_data, $fields );
}

Hooks

do_action( ‘xmlrpc_call’, string $name, array|string $args, wp_xmlrpc_server $server )

Fires after the XML-RPC user has been authenticated but before the rest of the method logic begins.

apply_filters( ‘xmlrpc_default_user_fields’, array $fields, string $method )

Filters the default user query fields used by the given XML-RPC method.

User Contributed Notes

You must log in before being able to contribute a note or feedback.