-
Notifications
You must be signed in to change notification settings - Fork 45
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
Cant use new line in the first method #9
Comments
I can't use newlines in any method GET or POST. Any request with newlines in the code field just has them be gone, resulting in a LONG one-line string of text. |
Ideally it should follow the same syntax as url encoding does. Replacing %20 with %250A should shift it to a new line Will try to encode and push changes to the API to handle such scenarios |
Seems to work with it URI encoded. Didn't think that I had to do that in the case of sending a POST request because JSON can handle any string thrown at it. |
"This is%0Anext line" in post request |
The code can be only one line in the first method
The text was updated successfully, but these errors were encountered: