Personal access tokens authenticate via the 'Authorization: Bearer xxx' header. It looks like VIRA only supports basic auth at the moment. Description of the feature is here: https://confluence.atlassian.com/enterprise/using-personal-access-tokens-1026032365.html When using the python API, these creds can be provided via: ``` jir = JIRA(options={"headers": {"Authorization": "Bearer xxxx"}}) ```
Personal access tokens authenticate via the 'Authorization: Bearer xxx' header. It looks like VIRA only supports basic auth at the moment.
Description of the feature is here: https://confluence.atlassian.com/enterprise/using-personal-access-tokens-1026032365.html
When using the python API, these creds can be provided via: