asyrjasalo / RESTinstance

Robot Framework library for RESTful JSON APIs
https://pypi.org/project/RESTinstance
GNU Lesser General Public License v3.0
205 stars 84 forks source link

post need `params` argument #54

Closed kanchi240 closed 3 years ago

kanchi240 commented 5 years ago

Hi,

My api post use Parameters to send data, but post keyword not have the argument, so I need to add all the params to the endpoint.

luminatory commented 5 years ago

@asyrjasalo, will the requested 'Parameters' be implemented? I have come across the same issue. I cannot send auth data via headers or body. Also could you provide at /examples directory few POST examples related to authentication?

ravthiru commented 4 years ago

@asyrjasalo how to send "x-www-form-urlencoded" data to POST Something like this in Python d = {'banana': 20, 'eggs': 3}

requests.post("http://localhost:8080", data=d)

Atihinen commented 3 years ago

Hi!

Does the pull request #99 fix the issue?