I try to retrieve some information from our JIRA (cloud) using TScHttpWebRequest component. The RequestUri is set to
"https://takarekinfo.atlassian.net/rest/agile/1.0/issue/KE-7347?fields=customfield_10274".
Filled the component Credentils properties, but it says "Unauthorized". As I understand the JIRA wont accept basic authentication anymore, so I generated a token and tried this:
"https://takarekinfo.atlassian.net/rest/agile/1.0/issue/KE-7347?user=my_email@domain.com:xxxx_my_token_xxx&fields=customfield_10274".
Still no luck. If I log in to the JIRA in the browser both URL working fine. Unfortunatelly I have very little knowledge about this kind of technology, so I would appreciate any help how can I retrieve the desired information form our JIRA.
update: this one is working fine with curl.exe: curl.exe -D- -u my_email@domain.com:xxxx_my_token_xxx -X GET -H "Content-Type: application/json" https://takarekinfo.atlassian.net/rest/agile/1.0/issue/KE-7347?fields=customfield_10274
All I need to implement this code using SecureBridge or other working solution under XE7. Tried TIdHTTP, not working for me, it says IOHandler not assigned and when I assign a SSL IOHandler says SSL library could not load, probably this is the same problem I ran into, Indy doesnt handle certain SSL protocols.