Request Jira REST API wiht Basic Auth doesn't work anymore

Hi @dmeyer

I’ve done this as well - base64-encoded(Username:Pwd) or base64-encoded(Email:Pwd). May be my command-example was a bit misleading.

It should be:
curl -D- -X GET -H "Authorization: Basic <encoded(Username:Pwd)>" -H "Content-Type: application/json" https://**myInstance.jira.com**/rest/api/2/issue/JIRA-123

and:

curl -D- -X GET -H "Authorization: Basic <encoded(Email:Pwd)>" -H "Content-Type: application/json" https://**myInstance.jira.com**/rest/api/2/issue/JIRA-123

What else could it be ?

Regards