For GET requests, we pass a list of dictionaries. Each dictionary is of the form
For POST requests we currently pass the whole payload object in string form. Now that we have #91, we should convert this to a list of inner dictionaries for consistency. That way the same callback will work for both GET and POST requests.
For GET requests, we pass a list of dictionaries. Each dictionary is of the form
{"p": "ev", ...}For POST requests we currently pass the whole payload object in string form. Now that we have #91, we should convert this to a list of inner dictionaries for consistency. That way the same callback will work for both GET and POST requests.