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
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. No error response and no error code with url "https://cau.urjc.es"
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.