You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi
I run this query using perl script
use JIRA::REST;
my $search = $jira->GET('/search', {
jql => "project = \"MNAND QRA ITALY\"",
maxResults => 1000,
});
generally it works correctly, but a couple of days ago it started to respond with
JIRA::REST Error[400 - Bad Request]:
- Error in the JQL Query: The character '%' is a reserved JQL character. You must enclose it in a string or use the escape '\u0025' instead. (line 1, character 8)
Which could be the issue???
Hi @Michele D_Armento ,
Give it a try with this JQL value "project%20%3D"MNAND%20QRA%20ITALY""
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
jql => 'project = \"MNAND QRA ITALY\"' How about this? Also ensure that you are using https
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
same issue
connection is https
it is couple of days that can't resolve jql ... before it worked
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.