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.