Problem: "InvalidCharacterError " due to redundant decoding from base64 of a response content that was instead in plain text (no base64 encoding)
Solution: Make use of the second argument to the callback of the native request.getContent function, that signifies if the response is encoded, as documented in the API reference.
Problem: "InvalidCharacterError " due to redundant decoding from base64 of a response content that was instead in plain text (no base64 encoding)
Solution: Make use of the second argument to the callback of the native request.getContent function, that signifies if the response is encoded, as documented in the API reference.
Fixes: #272