Posted on April 27, 2008 by Dave Here is a JSON validator. Share this:ShareTwitterFacebookLinkedInLike this:Like Loading... Related
The validator seems to report as invalid any JSON containing escape sequences such as \’, which is the normal way to escape the single quote character. For example, it flunks the folowing: {“replyCode”:500, “replyText”:”test \”} Reply
The validator seems to report as invalid any JSON containing escape sequences such as \’, which is the normal way to escape the single quote character. For example, it flunks the folowing:
{“replyCode”:500, “replyText”:”test \”}
Hi Xavier,
The following JSON works:
{
“replyCode”: 500,
“replyText”: “test \””
}