Why Rest API call is not working?

Scheibli Márk August 17, 2017

Hello!

At the moment i'm working in js with Rest API. I want to get the issues for a project on this way:

$.get(AJS.contextPath() + "/rest/api/2/search?jql=project=" + is_data, function( data ) {});

It is working like this:

If the is_data are the names of the projects then if i try to get a two words named project's issues i get an error message, but if i try with one words named projects then it is working totally fine. If i try to put the project keys in the is_data, then it is working fine with the two words named projects and some of the one word named projects but if i have a project named like this: OneTry, then the key is ON and it can not get the issues because of failed Rest API call.

I totally don't know what is the problem. Should i somehow transfer the two words named projects?

1 answer

0 votes
Aleksandr Zuevich
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 17, 2017

Hi, try to add single quotes to each project name.

Scheibli Márk August 17, 2017

Yes, that is the best option.

Suggest an answer

Log in or Sign up to answer