request should support passing raw strings for body, thus enabling the same behavior as curl -X POST -d a=b&c=d—simply that the url-encoded query string is now in the body instead of the url.
I've found an api that requires this instead of multipart form data, so that's why it's occurring to me to request this feature.
request
should support passing raw strings forbody
, thus enabling the same behavior ascurl -X POST -d a=b&c=d
—simply that the url-encoded query string is now in the body instead of the url.I've found an api that requires this instead of multipart form data, so that's why it's occurring to me to request this feature.