You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello Team,
i am currently tring to access jira elements (Bugs / task's ) via python and below is the code which i am using:-
from jira import JIRA
jira_options = {
'server': 'https://netradyne.atlassian.net'
}
jira = JIRA(options=jira_options, basic_auth=())
issue = jira.issue('CN-663')
print(issue.fields.project.key) # 'JRA'
When running the above script , the below error is seen:-
response headers = {'Date': 'Thu, 30 Mar 2023 12:26:38 GMT', 'Content-Type': 'application/json;charset=UTF-8', 'Server': 'AtlassianEdge', 'Timing-Allow-Origin': '*', 'X-Arequestid': '47d4b2144a9c769fdab81bab8cf3eea0', 'Cache-Control': 'no-cache, no-store, no-transform', 'Content-Encoding': 'gzip', 'X-Content-Type-Options': 'nosniff', 'X-Xss-Protection': '1; mode=block', 'Atl-Traceid': '9fc110a50905cfa7', 'Report-To': '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group": "endpoint-1", "include_subdomains": true, "max_age": 600}', 'Nel': '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to": "endpoint-1"}', 'Strict-Transport-Security': 'max-age=63072000; includeSubDomains; preload', 'Transfer-Encoding': 'chunked'}
response text = {"errorMessages":["Issue does not exist or you do not have permission to see it."],"errors":{}}
Can someone help me out in resolving the issue