-
Notifications
You must be signed in to change notification settings - Fork 65
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
POST / PUT data in readme misleading #14
Comments
They both work actually, it depends what the server accepts. It's just raw data, so in the later case the server needs to parse it as json. http-console doesn't care what you type in there. |
understood. |
I'd like to humbly predict that inserting a super-brief explanation of typical formatting of POST arguments from a regular HTML web form will save other people time. I'm not the sharpest pencil in the drawer, but I'm also not atypical, and it cost me about an hour of poking around. |
Good idea. |
Got POST with form data to work: |
@bbn Thanks for the explanation cause the |
I made a bunch of updates to the readme to make handling cookies and request data more clear. I had trouble with it and see people complaining about in the issues. Closes cloudhead#14
Browsing the code I was able to figure out that in order to send multiple datums for POST I had to use a syntax like
x=1&y=2
rather than something like
{"x":1,"y":2}
The latter would be cool, but seems to not be supported at the moment. The former is fine but the documentation should be changed to reflect it.
The text was updated successfully, but these errors were encountered: