We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
One example is:
The Response Body is:[{ "devtoolsFrontendUrl": "/devtools/devtools.html?host=localhost:1142&page=1", "faviconUrl": "", "thumbnailUrl": "/thumb/http://sfbay.craigslist.org/search/ppa?query=air+conditioner+%7C+a%2Fc", "title": "SF bay area appliances "air conditioner | a/c" - craigslist", "url": "http://sfbay.craigslist.org/search/ppa?query=air+conditioner+%7C+a%2Fc", "webSocketDebuggerUrl": "ws://localhost:1142/devtools/page/1" }]
Notice how the title value has double quotations inside it that are not escaped. This is invalid JSON
The text was updated successfully, but these errors were encountered:
I see the same issue. Is there any solution / workaround ?
Sorry, something went wrong.
I directly consume the debug proxy in my application. I simply scan for malformed JSON and correct it in my application.
A more stable solution would be to modify the JSON generator so it correctly escapes quotes.
f040da6
should be fixed with 4b9f20f
Escape sensitive values in json output. fixes #81
4b9f20f
No branches or pull requests
One example is:
The Response Body is:[{
"devtoolsFrontendUrl": "/devtools/devtools.html?host=localhost:1142&page=1",
"faviconUrl": "",
"thumbnailUrl": "/thumb/http://sfbay.craigslist.org/search/ppa?query=air+conditioner+%7C+a%2Fc",
"title": "SF bay area appliances "air conditioner | a/c" - craigslist",
"url": "http://sfbay.craigslist.org/search/ppa?query=air+conditioner+%7C+a%2Fc",
"webSocketDebuggerUrl": "ws://localhost:1142/devtools/page/1"
}]
Notice how the title value has double quotations inside it that are not escaped. This is invalid JSON
The text was updated successfully, but these errors were encountered: