-
-
Notifications
You must be signed in to change notification settings - Fork 218
New issue
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
BlueScreen HTTP Request: Add support for rendering PHP Input #392
base: master
Are you sure you want to change the base?
Conversation
Hi it's nice feature but this "JSON detection" is very dumb. I think it would be better to detect JSON using content type (application/json). |
You cannot simple use |
…ion as HTTP header.
Thanks to everybody. @lukaspijak Added detection by HTTP header @JanTvrdik Added limitation for 10000 input characters. |
de3ad52
to
191c0d2
Compare
2b958bb
to
f36b649
Compare
68b0ec8
to
344c772
Compare
8ec7417
to
c8f135c
Compare
c3c8bf0
to
6f7e1c3
Compare
84dee11
to
bd73e33
Compare
7799297
to
a386d38
Compare
f3f04e0
to
0a90e93
Compare
5ee33d7
to
8e708de
Compare
+1 |
If request was called as ajax json payload with some data but without
'Content-Type': 'application/x-www-form-urlencoded'
header, Tracy can not dump sent values.This change add automatic detection of
PHP Input
and render toHTTP request
section.Example:
If entered data was short json, Tracy will detect it automatically and dump as array for bette readability.
More information (Czech language): https://php.baraja.cz/ajax-post
Thanks.