You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
HI , I was trying to develop a script that download files from my confluence page , As of now i used python atlassian library and request module, But keep getting 401 even though i provided valid username and password
My code
from atlassian import Confluence
import requests
from requests.auth import HTTPBasicAuth
import urllib.request
confluence = Confluence(url='http://kittudemo123.atlassian.net',
username='username',
password= 'password')
attachments_container = confluence.get_attachments_from_content(page_id=33110, start=0, limit=500)
attachments = attachments_container['results']
for attachment in attachments:
fname = attachment['title']
download_link = confluence.url + attachment['_links'['download']
r = requests.get(download_link, auth = HTTPBasicAuth(confluence.username,confluence.password))
if r.status_code == 200:
with open(fname, "wb") as f:
for bits in r.iter_content():
f.write(bits)
Hello @Naveen Vb!
I was able to find a thread on Stackoverflow, outside our community, that answers your request:
Looking at the code you provided, it seems that you have already looked into it! So, I would start by checking the authentication method and credentials that you are using.
If you want to, you can also raise your question in our Sister Community, the developer community! Here, take a look:
Let us hear from you!
Hi Community! We're thrilled to share that Team Calendars for Confluence is now a built-in feature for Confluence Data Center releases 7.11 and beyond. A long time favorite, Team Cale...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.