from __future__ import annotations
import re
from collections import Counter
from typing import cast
from jira import JIRA
from jira.client import ResultList
from jira.resources import Issue
#login
user = 'XXXX' #My login in jira
apikey = 'XX' #My Personal Token
options = {
'server': server
}
jira = JIRA(options, token_auth=(apikey) )
Python return: response text = {"error": "Failed to parse Connect Session Auth Token"}
Python312 version
Please, how can I work with authentication using this python lib?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.