WP_REST_Request::parse_body_params()

In this article

Parses the request body parameters.

Description

Parses out URL-encoded bodies for request methods that aren’t supported natively by PHP.

Source


		return new WP_Error( 'rest_invalid_json', __( 'Invalid JSON body passed.' ), $error_data );
	}

	$this->params['JSON'] = $params;

	return true;
}

/**
 * Parses the request body parameters.
 *
 * Parses out URL-encoded bodies for request methods that aren't supported
 * natively by PHP.
 *
 * @since 4.4.0
 */
protected function parse_body_params() {
	if ( $this->parsed_body ) {
		return;
	}

	$this->parsed_body = true;

	/*

Changelog

VersionDescription
4.4.0Introduced.

User Contributed Notes

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