Replies: 1 comment 1 reply
|
Scoped (granular) API tokens are not supported out of the box. The reason is that scoped tokens require the Atlassian API gateway URL ( There is a workaround — set the URL to the gateway directly:
curl -s https://your-site.atlassian.net/_edge/tenant_info | python3 -m json.tool
JIRA_URL=https://api.atlassian.com/ex/jira/{your-cloud-id}
JIRA_USERNAME=your-email@example.com
JIRA_API_TOKEN=your-scoped-tokenSame pattern for Confluence ( Native support is tracked in #968. |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Are API tokes with scopes supported? If yes, what are the minimum scopes expected? I tried, but I can't make it to work.
All reactions