JSON bad request Unrecognized token
when trying to post via the youtrack api (adding a issue) I get a problematic error. Here is my code: `postHeaders = { ‘Accept’:’application/json’, ‘Authorization’:’secret’, ‘Content-Type’:’application/json’ } postData = { ‘project’:{‘id’:’0-5′}, ‘summary’:’sample’, ‘description’:’Sample description’ } responsePost = requests.post("https://yourcompany.youtrack.cloud/api/issues", headers=postHeaders, data=postData) print(responsePost.content)` I got this error: b'{"error":"bad_request","error_description":"Unrecognized token \’project\’: was expecting (JSON String, Number, Array, Object… Read More JSON bad request Unrecognized token