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 All.
I am trying to extract data out of Agility checklist add-on and insert/move to a custom field Acceptance Criteria.
I can see using this rest API data into just for 1 issue but unable to figure out a way to do for all the issues in JIRA .
https://localhost/jira/rest/api/2/issue/PSUP-1/properties/com.greenyloop.acceptancecriteria
I have also tried looking for the table in the database but can't find specific table.
I am also trying to find a way using curl script but I am unable to run the script... hitting this error which I can't understand... either in order to solve it.
curl -2 -k -v https://localhost/jira
* About to connect() to Localhost port 443
* Connected to localhost port 443
* successfully set certificate verify locations:
* CAfile: /usr/share/curl/curl-ca-bundle.crt
CApath: none
* SSL: error:00000000:lib(0):func(0):reason(0)
* Closing connection #0
curl: (35) SSL: error:00000000:lib(0):func(0):reason(0)
I tried without -2 and it was giving me different error...
Connected to localhost port 443
* successfully set certificate verify locations:
* CAfile: /usr/share/curl/curl-ca-bundle.crt
CApath: none
* SSL: error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version
* Closing connection #0
curl: (35) SSL: error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version
So tried with -2 as above and feel its somewhere close..but no way near.
Anyone in the community had similar issues in order to extract data out of the Add-on which can help me
Hi Om,
You can try disable check curl SSL:
curl --insecure
Regards to SSL error - please see eg. https://stackoverflow.com/ or https://github.com/rust-lang/rustup/issues/2170 . It seem, that problem is with TLS v1 protocol.
Pavel
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.