I am trying to send HTTP POST to traccar from a python application. How can i use requests to send it in the following format (osmand):
Requests post syntax= requests.post(url, params={key: value}, args)
It works great when i use cURL.
Any one having any ideas?
Thanks
For POST you should use body instead of query parameters. You should be able to send it with something like this