Hello! I am writing some .Net code to upload files. When trying to deserialize the json response, I had to replace the "" with \" and then HtmlDecode the result for the deserialization to work. This is also the case when using the example response. Am I missing something or is there a bug in the html and plain response? Shouldn't the first and last " been escaped? Bad JSON escape sequence: \&. Line 10, position 36 -Christian
Hi Christian, I just had a look at this and there's definitely a slight problem with the html and plain outputs in the JSON response when sending messages. Basically there's a double-quote ("" .....) that shouldn't be there. This will be fixed in the next release (v3.1.8 when ready). Alternatively for now, you can use the base64 encoded html or plain responses and just base64 decode the html or plain response respectively.
Hi Johan! Well, for me to access the various properties of the response, I first need to deserialize it and thats whats not working... Christian