I'm trying to get all issues in my project. For that I'm using JQL in Python. Part of the code used for querying is something like this:
jira_options = {'server':'server name'}
jira = JIRA(options=jira_options, basic_auth=('username', 'password'))
issues_in_project = jira.search_issues('project = Dev+ Project AD', startAt=0, maxResuts=100, validate_query=True, fields=None,expand=None,json_result=None)
print (issues_in_project)
Can someone help me with this? It'll be much appreciated
HI, try this code :
issues_in_project = jira.search_issues('project = \"Dev+ Project AD\"', startAt=0, maxResuts=100,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Pranay Verma ,
Why don't you try with project Key.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Sreenivasaraju P ,
I tried using the project key, but apparently I got an error stating "You do not have permission to view it"
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.