I try create new Issue according to site: http://www.redmine.org/projects/redmine/wiki/Rest_Issues#Creating-an-issue
I try send json via post method. (using postman -plugin for chrome)
Post query: [my-domain]/redmine/issues.json
{
"issue": {
"project_id": 1, // my project has different number.
"subject": "Example",
"priority_id": 4
}
}
as a result it gaves me 404 I cant understand why.
I tried also use this query for post method
my-domain/redmine/projects/[my-project-name]/issues.xml
result: Subject can't be blank ---- but i gave it subject title!!
I dont know what to do.