Hello
Right now im trying to make an application for JIRA, im upgrading from using SOAP RPC to using the newest REST api, and all the GET methodes work perfectly.
Now im trying to make POST methodes works properly. But when im trying to create a new issue using: http://docs.atlassian.com/jira/REST/latest/#id161572 it all breaks.
Im getting this 400 Eror: {"errorMessages":[],"errors":{"summary":"Field 'summary' cannot be set. It is not on the appropriate screen, or unknown.","priority":"Field 'priority' cannot be set. It is not on the appropriate screen, or unknown.","description":"Field 'description' cannot be set. It is not on the appropriate screen, or unknown."}}
It supposed to be a JSON format exception, but when i look at my JSON post form with data, it perfectly match the requriments at their API site. I even try to copy that data they use there, and still get the error.
So my question is, have you any idea what i do wrong?