Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
WC_API_Authentication::get_keys_by_consumer_key( string $consumer_key )
Return the keys for the given consumer key
Description Description
Parameters Parameters
- $consumer_key
-
(Required)
Return Return
(array)
Source Source
File: includes/legacy/api/v2/class-wc-api-authentication.php
private function get_keys_by_consumer_key( $consumer_key ) { global $wpdb; $consumer_key = wc_api_hash( sanitize_text_field( $consumer_key ) ); $keys = $wpdb->get_row( $wpdb->prepare( " SELECT key_id, user_id, permissions, consumer_key, consumer_secret, nonces FROM {$wpdb->prefix}woocommerce_api_keys WHERE consumer_key = '%s' ", $consumer_key ), ARRAY_A ); if ( empty( $keys ) ) { throw new Exception( __( 'Consumer key is invalid.', 'woocommerce' ), 401 ); } return $keys; }
Changelog Changelog
Version | Description |
---|---|
2.4.0 | Introduced. |