Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
i am trying to download data from JIRA
user REST connection
My URL
i use basic authentication
below is my script
Qlik Sense has a Jira connector that simplifies most of this. It's part of the Web Connectors. You have to install it separately. See the following URL.
Exactly, that's what I was getting at in one of my previous posts. You don't even have to use the Web Connector package any longer, there is now an integrated JIRA connector:
I use the Jira connector to pull quite a bit of content from Jira and give users who do not have access to that a fully searchable dashboard on all issues.
i did tried with JIRA connector , but this similar error
Script:
That's exactly what I'm doing. The original question was "I want to search for issues on which I commented" which apparently is not that easy or possible w/o addons with JQL. That's how my "JIRA Explorer" got started. Now our internal team running our JIRA is also interested in expanding it to contain data of more projects.
I copied your code and used it with my JIRA connector. I believe the issue to be that you did not enclose your JIRA key in single quotes:
Not working:
WITH PROPERTIES (issueIdOrKey=$(vFileName));
Should work:
WITH PROPERTIES (issueIdOrKey='$(vFileName)');
my problem here is i have "-" inside file name
i change IssusId instead of Key