JSON not valid after json_encode posts

Newlines are not valid inside json strings. However you are outputting this code or otherwise checking it for sanity is somehow adding newlines into your long strings here.

Check that your strings really are all one line and not broken up into multiple lines.

Leave a Comment