Closed ptrsec closed 8 years ago
I found the issue. It's because of the double quotes, they won't get encoded and break the XML, so Google rejects it and throws a 400 status code. Converting the double quotes into their HTML entity representation should solve the problem (e.g. htmlentities() with the ENT_QUOTES parameter).
It's supported in the latest version
I am sending data to a Google Spreadsheet and I have a cell where I want new lines between items, so I'm using:
="an_item"&CHAR(10)&"another_item"
And so on. The problem is I'm getting an exception. Here's the output:
It seems that the HTTP response code is 400. I didn't further investigate the issue. Has anybody else encountered this issue and actually has a solution? I will come back with more details after debugging.