This one seems to come up from time to time. It looks like it is back today ... anyone else getting:
Error retrieving data for urlhttps://<domain>.atlassian.net/rest/api/2/field: <html> <head> <title>Unauthorized (401)
I tried a direct request through cURL and it responds the same way today.
Hi Chris,
REST API needs authentication and that can be achived by various ways, easiest and most common one being Basic Auth (using an HTTP Header encoded in Base64). When you're consulting the API through your browser, if you currently are logged in the application, a cookie is automatically retrieved but if the consumer of the API is a distant resource, it needs to be authenticated.
Did you send authentication credentials along with your request?
Thanks!
Thanks! Ya, it just started working again later that day. There was speculation that it was related to the CAPTCHA needing to be refreshed, but that wasn't it. It just started working with no intervention. Seems like there are changes being made on the REST system these days. This also launched the beginning of another issue I am tracking separately now.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Great, glad it worked then! I can guess you're using a cloud instance due to the URL and the REST API might be evolving a lot as you mentioned! usually it does not have a huge impact but might trigger some unexpected behaviours from time to time! Hope it won't affect your instance too much.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm hitting this problem too, while trying to use the Cloud REST API:
<html>
<head>
<title>Unauthorized (401)</title>
...trimmed...
<div class="aui-message aui-message-warning warning">
<p>Encountered a
<code>"401 - Unauthorized"</code> error while loading this page.
</p>
<p>
<a href="/secure/MyJiraHome.jspa">Go to Jira home</a>
</p>
</div>
</section>
<!-- .aui-page-panel-content -->
</div>
<!-- .aui-page-panel-inner -->
</div>
<!-- .aui-page-panel -->
</body>
</html>
I have created an API token and am using Postman to issue a GET request to https://<subdomain>.atlassian.net/rest/api/2/issue/XYZ-123
I'm using my email address as the username in Basic Auth, and using the API token as the password. Postman is correctly generating a base64 encoded Authorization header with the value 'Basic <base64 encoded string>'.
Furthermore I have looked at the 'Last accessed' time for the API token (https://id.atlassian.com/manage/api-tokens) to verify that it updates to 'a few seconds ago'
Anyone know what's going on? I never seen any response other than the 401.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ah, silly me - it looks like I was using my new updated email address. The one that is displayed on my Jira profile and the one that I use for logging in.
Of course, I should have been using the original email that I used to register with Jira, but haven't been using for the last 6 months.
Sorry for the sarcasm, but come on guys! This is messed up logic and poor documentation.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Neil
Saved my life thank you. Been battling 401 all morning. Then saw your post. We sign into Jira with Google Apps. A few months ago we changed our primary Google domain. I was trying to authenticate with my current email address domain.
Swapped to the old domain (which doesn't appear ANYWHERE in Jira I can find) and hey presto now authenticating fine.
David
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Neil.
This was the same for me. I have a SSO with company managed account using a new email and always got 401 with my API token.
After reading your message I remembered that I originally signed up using another email address. Only the original email (which is not visible anywhere on the atlassian portal or profile that I can see) 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.
iam facing 401 unauthorized. tried using my gsuite email and password? my organization does not allow atlassian user and password auth so how do i proceed on this ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
I have tried with all mailIDs I could try with. But still I am facing the same error continuously.
How to use Token in Java Rest client. I am using it simply passing as username/password for atlassian account. Should I pass it as a request parameter.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Even I am getting the same 401 error. I could successfully log-in from browser though. There was no captcha on screen. It happens intermittently. It won't work for many days but suddenly it starts working without any change in the code or property. I followed every tutorial and they are all same. Are there any changes in REST implementation from atlassian/JIRA?? I am using basic authentication.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Same problem here, I realized it from yesterday, I hate companies that changes things without warning the user in advance and give a solution.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm having the same problem. Noticed it no longer works yesterday. The same postman script, email, password, everything. Whatever changed, it's not on my end.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Looks like this may be the solution to the problem. Unsername/Paswoord authentication has been deprecated.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Brent DeMark thanks for leading me in the right direction. I had the same 401 issue since last week due to the deprecated user/pwd and tried various solutions without any luck.
I just generated a Jira token from my profile security settings, then base64 encoded "login@domain.com:my_token", and passed it as Basic authentication which finally worked.
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.
Hello everyone,
I also faced the same issue, instead of putting your password, please create API token and put into the password. That works for me.
You can create your api key using below link.
https://id.atlassian.com/manage/api-tokens
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
A big thanks for this @Neil McMillan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hola! Estoy teniendo ese mismo error en el jira, a la hora de ver la actividad reciente de el tablero me aparece vacío y me sale error 401
¿Alguien sabe que puede estar pasando?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
thanks neil.my man
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How can we get the original email?
It works just fine with my jira test instant using my email and the generated token from JIRA, with when i'm trying to connect to jira client, with the email (google account ) and a token of a user but it keeps returning 401 status. How can we get the original email?
Thank's in advance.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Neil it worked like charm
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.