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.