Hi.
I am trying to do something very simple.
#!/usr/bin/python
from jira import JIRA
options = { 'server' : 'http://x.x.x.x:9090'}
jira = JIRA(options,basic_auth=('username', 'password'))
projects = jira.projects()
print (projects)
And I get these errors. How do I resolve this?
Traceback (most recent call last):
File "C:\Dropbox\jira\req_jira2.py", line 21, in <module>
jira = JIRA(options,basic_auth=('username', 'password'))
File "C:\Python3\lib\site-packages\jira\client.py", line 472, in __init__
si = self.server_info()
File "C:\Python3\lib\site-packages\jira\client.py", line 2133, in server_info
j = self._get_json('serverInfo')
File "C:\Python3\lib\site-packages\jira\client.py", line 2549, in _get_json
r = self._session.get(url, params=params)
File "C:\Python3\lib\site-packages\jira\resilientsession.py", line 151, in get
return self.__verb('GET', url, **kwargs)
File "C:\Python3\lib\site-packages\jira\resilientsession.py", line 147, in __verb
raise_on_error(response, verb=verb, **kwargs)
File "C:\Python3\lib\site-packages\jira\resilientsession.py", line 57, in raise_on_error
r.status_code, error, r.url, request=request, response=r, **kwargs)
jira.exceptions.JIRAError: JiraError HTTP 404 url: http://x.x.x.x:9090/rest/api/2/serverInfo
text: <!DOCTYPE html><html><head><title>Apache Tomcat/8.5.9 - Error report</title><style type="text/css">h1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} h2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} h3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} body {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} b {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} p {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;} a {color:black;} a.name {color:black;} .line {height:1px;background-color:#525D76;border:none;}</style> </head><body><h1>HTTP Status 404 - /rest/api/2/serverInfo</h1><div class="line"></div><p><b>type</b> Status report</p><p><b>message</b> <u>/rest/api/2/serverInfo</u></p><p><b>description</b> <u>The requested resource is not available.</u></p><hr class="line"><h3>Apache Tomcat/8.5.9</h3></body></html>
response headers = {'Content-Type': 'text/html;charset=utf-8', 'Content-Language': 'en', 'Content-Length': '1028', 'Date': 'Fri, 26 Oct 2018 21:10:27 GMT'}
response text = <!DOCTYPE html><html><head><title>Apache Tomcat/8.5.9 - Error report</title><style type="text/css">h1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} h2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} h3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} body {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} b {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} p {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;} a {color:black;} a.name {color:black;} .line {height:1px;background-color:#525D76;border:none;}</style> </head><body><h1>HTTP Status 404 - /rest/api/2/serverInfo</h1><div class="line"></div><p><b>type</b> Status report</p><p><b>message</b> <u>/rest/api/2/serverInfo</u></p><p><b>description</b> <u>The requested resource is not available.</u></p><hr class="line"><h3>Apache Tomcat/8.5.9</h3></body></html>
Maybe try https rather than http in your URL?
I checked. It's http what IT uses. Not https.
Besides, it works with CURL command natively on command prompt when I give :
curl -D- -u username:username -X GET -H "Content-Type: application/json" http://x.x.x.x:8080/issue/rest/api/2/search?jql=project+in+('projectname')+AND+reporter+in+('username')
Also, python requests works too when I give :
import requests
url = "http://x.x.x.x/issue/rest/api/2/search?jql=project+in+('projectname')+AND+reporter+in+('username')"
response = (requests.get(url, auth=('username', 'username')).content)
data = json.loads(response)
But we want to use 'import jira' method using jira python module because as it turns out with 'requests', many customfields are ridiculously nested dictionaries which is next to impossible to work with. Using jira's own python module made this much easier, but I am unable to do simple thing like list projects.
When I changed the port to 8080 I get this following error. (My original question used 9090 as port address. I masked the IP address below for pasting purpose), :
WARNING:root:HTTPConnectionPool(host='x.x.x.x', port=8080): Max retries exceeded with url: /rest/api/2/serverInfo (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x000001DF4A2B4B38>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond',)) while doing GET http://x.x.x.x:8080/rest/api/2/serverInfo [{'params': None, 'headers': {'User-Agent': 'python-requests/2.20.0', 'Accept-Encoding': 'gzip, deflate', 'Accept': 'application/json,*.*;q=0.9', 'Connection': 'keep-alive', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json', 'X-Atlassian-Token': 'no-check'}}]
WARNING:root:Got ConnectionError [HTTPConnectionPool(host='x.x.x.x', port=8080): Max retries exceeded with url: /rest/api/2/serverInfo (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x000001DF4A2B4B38>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond',))] errno:None on GET http://x.x.x.x:8080/rest/api/2/serverInfo
{'response': None, 'request': <PreparedRequest [GET]>}\{'response': None, 'request': <PreparedRequest [GET]>}
WARNING:root:Got recoverable error from GET http://x.x.x.x:8080/rest/api/2/serverInfo, will retry [1/3] in 5.291279752381344s. Err: HTTPConnectionPool(host='x.x.x.x', port=8080): Max retries exceeded with url: /rest/api/2/serverInfo (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x000001DF4A2B4B38>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond',))
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.