Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Jira API python cau.urjc.es

Angel Lopez
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
February 21, 2022

Hi,

I'm trying to use API JIRA in python for my final degree project and I'm trying to connect with cau.urjc.es 

Here's a simple example:

 

from jira import JIRA

jira = JIRA(server="https://cau.urjc.es")

#jira = JIRA(server="https://jira.atlassian.com") ## With this url works

# Get all projects viewable by anonymous users.
projects = jira.projects()

for project in projects:
     print(project.key)

 

I've tried with these other urls:

https://cau.urjc.es/servicedesk/customer/portals

https://cau.urjc.es/secure/Dashboard.jspa

But without success

 

1 answer

1 vote
Dirk Ronsmans
Community Champion
February 21, 2022

Hi @Angel Lopez ,

You mention "without success" can you elaborate a bit more as to what the error is you are getting?

  • Just a blank result?
  • some error response?
  • some error in the code?
Angel Lopez
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
February 21, 2022

Hi @Dirk Ronsmans 

Just a blank result. No error response and no error code with url "https://cau.urjc.es"

Suggest an answer

Log in or Sign up to answer