I have been trying for hours the following simple CURL command described in the documentation without any success. It always returns me a 401 unauthorized.
curl -D- -u "email:password" -X GET -H "Content-Type: application/json" https://textmaster.jira.com/rest/api/2/issue/TM-3450
I have checked that my confluence config has the "allow remote api calls" set to true. What should I do to make this work?
Note: I'm able to access the rest API from the browser directly, while logged in with my user account.
Note: It's a linked google account with a password set.
Hi Pierre-Louis,
Silly question but your email is your username? if not then your command should be replaced with JIRA username. Also since your connection is https but -k at the end of the URL and try again
curl -D- -u "username:password" -X GET -H "Content-Type: application/json" https://textmaster.jira.com/rest/api/2/issue/TM-3450 -k
Also if that is not the case then you can try other authentication technique like Oauth.
Taha
I just wanted to add a comment because I skipped by this answer and then kept looking for a while before realizing this was the correct answer. Even though I login to confluence with `nate@mydomain.com`, that is not the username to user when authenticating against the api. Against the api, I have to use `nate` as the username.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This can't be stated enough. The API docs aren't clear and make it sound like the website authentication is exactly the same as the rest API authentication. The website works with both username and email as the "username" while the rest API only works with username. You can see your "username" by viewing your profile in JIRA.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Jesus... I spent hours trying to figure out why, are we supposed to be mind readers? You have to emphasize this fact in your documentation, since it's almost ubiquitous that both email and username can be used to authenticate.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank goodness; yes this solved it.
To complicate matters, the REST API was accepting with the email address as the login ID for the first minute or so after the first login with a new account, so it was working for a while ... and then not.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
My username is also my email address but Jira won't allow me to change the username to a new username. So what can I do to make my authentication API work?
Let say my email address is "nguyen7744@yahoo.com", can I send my authentication as:
curl -D- -u "nguyen7744:password1234" -X GET -H "Content-Type: application/json" https://textmaster.jira.com/rest/api/2/issue/TM-3450
If that won't work then how can I change my current username (nguyen7744@yahoo.com) to a new username? Or I need to contact JIra's support?
Thanks
John Nguyen
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So i was struggling with this for about 2 days, and none of those answers worked for me.
I was able to query the api using my personal username:password but not the account that will be used in the automations, as it returned every time authentication_failed with a 401.
We use google accounts, but i found that i was able to log in using my username instead of my email, but the automation account was not able to, so that's why basic auth was failing every time.
In the end what i did to solve it was to login with the user in jira, check it had the correct permissions to what i wanted, then create an api token in the user profile.
Then i was finally able to query the api using curl with -u email:apitoken endpoint
I post it here just in case anyone else is having this same problem.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This helped.
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
David Gacías Lacruz This helped, thank you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It works like a charm.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Awesome ! It works
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It works with curl command, when i use Python library and similar token with authentication username : Email Id and password "API Token", it does not work.
Using jira-python library.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Faced the same issue and found the solution (as of June 2018).
The username IS the full email.
The password is NOT your password to login, but an API token. To generate an API token, go to https://id.atlassian.com/manage/api-tokens# and create a new one.
So the username is the full email and the password is the API token from above step for using basic auth with Jira API.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks it works for me
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am still facing the issue. This is what I have configured in Jenkins (Jira Issue Updater 1.18):
https://companyname.atlassian.net/rest/api/2
Username: {Email} (also set as the username)
Password: {Token}
Am I missing any step? Appreciate your response.
Thanks!
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.
@Jesper den Boer - I am still not able to get it to work with the configuration posted above. Did you do anything different?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Use your Google email as the username and the generated API token as the password.
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.
Using email as username and API Token for password worked for me, thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Working, guess this is the right answer for new JIRA
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Jesper it works.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
omg, it really works, thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
thanks. you saved me a day---
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.
This worked for me. Thanks a lot!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Bravo, finally i am able to run my code. It was working fine with the password but not now.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Brilliant :) Thank you :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Finally a solution that works. Thank you so much!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks. It worked for us.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks mate. it worked for me :)
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.
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for the helpful tips.
Now, this is a very very bad change decision by Atlassian I must say.
Token !== Password
never...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks! Thanks! Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just confirming this still works in Nov 2020 with Jira Cloud Next Gen, using atlassian-python-api. Username as my full email, password as API token. :D
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Great. That worked
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Note that if you are logging in via a sync Google account, it is NOT the google password you are supposed to use. Also it is not the email.
Instead you should go to your user profile and look up your username and set a password.
https://confluence.atlassian.com/cloud/manage-your-profile-and-password-744721602.html
For site admin functions, RSS feeds, REST API access, or WebDAV uploads you'll need to have an Atlassian Cloud password (separate to your Google Apps password. If you haven't set an Atlassian Cloud password, go to the login page and choose Unable to access your account? in the Atlassian Cloud login section.
Of course it makes no sense that this information is not available on the REST API documentation page, since it is quite crucial to get it working.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is there a way to do this in the new JIRA experience? I can't seem to find any information and the link you provided is now dead.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Having the same issue.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Amazing!!!
It works for me using API token to repalce the password. Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Joakim Söderberg: The link you provided is now is dead. what username should we use please ? (at the jira interface we do use the email (gmail account) and the password to get in) , but using basic auth, when we send email and the token provided by jira, but it doesnt work
whet username should we use? where can we find it?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I also faced this issue like others. I was able to successfully use my email with the rest api and then I created a new api token in https://id.atlassian.com/manage/api-tokens I used the openssl command like this:
printf myusername@domain.net:mypassword | openssl base64
bXl1c2VybmFtZUBkb21haW4ubmV0Om15cGFzc3dvcmQ=
For basic authentication to work you can't have a newline character so that is why I used printf to basic 64 encode, then you can make a rest call like this:
GET /rest/api/2/user?username=myusername HTTP/1.1
Host: somedomain.net
Authorization: Basic bXl1c2VybmFtZUBkb21haW4ubmV0Om15cGFzc3dvcmQ=
Accept: application/json
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just in case any Gmail users gets to here and is still facing issues, make sure you use the exact email that is associated with your account:
so thats @gmail.com vs @googlemail.com
Lost a day or two on that one.
Gmail accepts both, most websites dont.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I was facing a similar issue too. In case if someone trying to access the data using HttpWebRequest instead of curl, remember to base64 the credentials.
string Token = email + ":" + apiToken;
Token = Convert.ToBase64String(UTF8.GetBytes(Token));
req.Headers.Add("Authorization", "Basic " + Token);
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It works, Thanks you
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.