You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should switch from using POST forms to json data. E.g. in POST /nodes/<name> there has been some type confusion because python-requests serializes a python boolean to "True" or "False", as strings - not booleans. Serializing with json works properly though.
To send json data with python-requests from the client:
We should switch from using POST forms to json data. E.g. in
POST /nodes/<name>
there has been some type confusion because python-requests serializes a python boolean to"True"
or"False"
, as strings - not booleans. Serializing with json works properly though.To send json data with python-requests from the client:
And to read the json data in a POST request on the Bottle end:
The text was updated successfully, but these errors were encountered: