WC_Helper_API::request() public WC 1.0
Perform an HTTP request to the Helper API.
{} Это метод класса: WC_Helper_API{}
Хуки из метода
Возвращает
Массив/WP_Error. The response from wp_safe_remote_request()
Использование
$result = WC_Helper_API::request( $endpoint, $args );
- $endpoint(строка) (обязательный)
- The endpoint to request.
- $args(массив)
- Additional data for the request. Set authenticated to a truthy value to enable auth.
Код WC_Helper_API::request() WC Helper API::request WC 5.0.0
public static function request( $endpoint, $args = array() ) {
$url = self::url( $endpoint );
if ( ! empty( $args['authenticated'] ) ) {
if ( ! self::_authenticate( $url, $args ) ) {
return new WP_Error( 'authentication', 'Authentication failed.' );
}
}
/**
* Allow developers to filter the request args passed to wp_safe_remote_request().
* Useful to remove sslverify when working on a local api dev environment.
*/
$args = apply_filters( 'woocommerce_helper_api_request_args', $args, $endpoint );
// TODO: Check response signatures on certain endpoints.
return wp_safe_remote_request( $url, $args );
}