I tried to use PAT to access my account and fetch issues, I got HTTP status 429, but I just create the PAT and only asked one request.
from jira import JIRA
jira_server = "https://xxxxx.com/"
pat_key = "xxxxxxxxxx"
jira = JIRA(server=jira_server, token_auth=pat_key)
try:
user = jira.current_user()
print(f"✓ Authentication successful! Logged in as: {user}")
except Exception as e:
print(f"✗ Authentication failed: {e}")
'X-RateLimit-Limit': '0', 'X-RateLimit-Remaining': '0', 'X-RateLimit-FillRate': '0', 'X-RateLimit-Interval-Seconds': '1', 'Retry-After': '9223372036854775807'
Hi @Min Yan A
Check the server logs.
Or check with you Jira administrator.
Rest API limits for on-premise products are set and controlled by the Jira Administrator
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.