You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Generates wrong parameter encoded when present parameters with ARRAY values
For example:
parameter Identities = ['addr1', 'addr2']
Into result we have query: Identities=addr1&Identies=addr2 - WRONG
Result must be with array definition: Identities[]=addr1&Identies[]=addr2
Why you don't use PHP native function http_build_query()
$query = http_build_query($this->parameters);
The text was updated successfully, but these errors were encountered:
Hey @vborduja, thanks for the suggestion for using PHP's http_build_query function.
My tests showed that AWS accepts only PHP_QUERY_RFC1738 encryption type.
And i've pushed a new release (0.9.5) which should work for you.
Generates wrong parameter encoded when present parameters with ARRAY values
For example:
parameter
Identities = ['addr1', 'addr2']
Into result we have query:
Identities=addr1&Identies=addr2
- WRONGResult must be with array definition:
Identities[]=addr1&Identies[]=addr2
Why you don't use PHP native
function http_build_query()
$query = http_build_query($this->parameters);
The text was updated successfully, but these errors were encountered: