Adobe ColdFusion 10
default parameter EXCLUDE_FIELDS=_links was not working as it was being passed in capital letters. turning it into small letters exclude_fields=_links worked.
mailchimp.cfc
line: 325
original
response = listAppend(response, key & "=" & urlEncodedFormat(arguments.params[key]), "&");
changed
response = listAppend(response, lcase(key) & "=" & urlEncodedFormat(arguments.params[key]), "&");
Note: I am not yet fully aware of the mailchimp API as if it may need some parameters in mixed (lower/upper case) letters. In that case, this fix may lead to other issues as mailchimp API appears to be case sensitive.
Adobe ColdFusion 10
default parameter EXCLUDE_FIELDS=_links was not working as it was being passed in capital letters. turning it into small letters exclude_fields=_links worked.
mailchimp.cfc
line: 325
original
response = listAppend(response, key & "=" & urlEncodedFormat(arguments.params[key]), "&");changed
response = listAppend(response, lcase(key) & "=" & urlEncodedFormat(arguments.params[key]), "&");Note: I am not yet fully aware of the mailchimp API as if it may need some parameters in mixed (lower/upper case) letters. In that case, this fix may lead to other issues as mailchimp API appears to be case sensitive.