Sometimes APIs will accept an empty string or null for the contents of Multipart Values. Previously if you had tried to provide an empty string, you would get an error from Guzzle. This was because of an array_filter() that I had added previously.
I have now also written a real-world test that makes an API call to our test service to ensure real uploads work.
Fixes #331
Sometimes APIs will accept an empty string or
null
for the contents of Multipart Values. Previously if you had tried to provide an empty string, you would get an error from Guzzle. This was because of anarray_filter()
that I had added previously.I have now also written a real-world test that makes an API call to our test service to ensure real uploads work.