We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.get_group_members()
I have a pretty weird problem for the Confluence API.
I have a small script where I will only print the group members of a Confluence group.
It worked since last Friday, but suddenly, I will get an 401 Unauthorized error.
Nothing changed, neither the code nor the token (which expires in 1 year).
import os from atlassian import Confluence from dotenv import load_dotenv load_dotenv() confluence = Confluence( url=os.getenv("CONFLUENCE_BASE_URL"), token=os.getenv("CONFLUENCE_TOKEN"),) batch = confluence.get_group_members(group_name="group_name", start=0, limit=100)
I also tried the authentication with password and username, but nothing worked. It's weird since it suddenly stopped working.
python==3.11 atlassian-python-api==3.41.16
The text was updated successfully, but these errors were encountered:
Was an update on Confluence side?
Sorry, something went wrong.
No branches or pull requests
I have a pretty weird problem for the Confluence API.
I have a small script where I will only print the group members of a Confluence group.
It worked since last Friday, but suddenly, I will get an 401 Unauthorized error.
Nothing changed, neither the code nor the token (which expires in 1 year).
I also tried the authentication with password and username, but nothing worked. It's weird since it suddenly stopped working.
The text was updated successfully, but these errors were encountered: