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
When you add a post parameter with a null value it the entire key value pair is removed from the base signature string, however Guzzle will send the post parameter as an empty parameter. Meaning the server will have a signing mismatch.
One of two things could happen
This plugin should be corrected so null parameters are first coerced into empty strings (probably not what we want?)
Parameters with null values should not be added to the PostBody objects.
The text was updated successfully, but these errors were encountered:
evanpurkhiser
changed the title
Discrepancy between parameters sent and
Discrepancy between parameters sent and guzzles PostBody sent
Mar 20, 2015
When you add a post parameter with a
null
value it the entire key value pair is removed from the base signature string, however Guzzle will send the post parameter as an empty parameter. Meaning the server will have a signing mismatch.One of two things could happen
null
parameters are first coerced into empty strings (probably not what we want?)null
values should not be added to thePostBody
objects.The text was updated successfully, but these errors were encountered: