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. Use rawurlencode() instead.

WC_REST_Authentication::normalize_parameters( array $parameters )

Normalize each parameter by assuming each parameter may have already been encoded, so attempt to decode, and then re-encode according to RFC 3986.


Description Description

Note both the key and value is normalized so a filter param like:

‘filter[period]’ => ‘week’

is encoded to:

‘filter%255Bperiod%255D’ => ‘week’

This conforms to the OAuth 1.0a spec which indicates the entire query string should be URL encoded.

See also See also


Top ↑

Parameters Parameters

$parameters

(Required) Un-normalized parameters.


Top ↑

Return Return

(array) Normalized parameters.


Top ↑

Source Source

File: includes/class-wc-rest-authentication.php

	private function normalize_parameters( $parameters ) {
		$keys       = wc_rest_urlencode_rfc3986( array_keys( $parameters ) );
		$values     = wc_rest_urlencode_rfc3986( array_values( $parameters ) );
		$parameters = array_combine( $keys, $values );

		return $parameters;
	}


Top ↑

User Contributed Notes User Contributed Notes

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