WC_Auth::post_consumer_data( array $consumer_data, string $url )
Post consumer data.
Description Description
Parameters Parameters
- $consumer_data
-
(Required) Consumer data.
- $url
-
(Required) URL.
Return Return
(bool)
Source Source
File: includes/class-wc-auth.php
protected function post_consumer_data( $consumer_data, $url ) {
$params = array(
'body' => wp_json_encode( $consumer_data ),
'timeout' => 60,
'headers' => array(
'Content-Type' => 'application/json;charset=' . get_bloginfo( 'charset' ),
),
);
$response = wp_safe_remote_post( esc_url_raw( $url ), $params );
if ( is_wp_error( $response ) ) {
throw new Exception( $response->get_error_message() );
} elseif ( 200 !== intval( $response['response']['code'] ) ) {
throw new Exception( __( 'An error occurred in the request and at the time were unable to send the consumer data', 'woocommerce' ) );
}
return true;
}
Changelog Changelog
| Version | Description |
|---|---|
| 2.4.0 | Introduced. |