I'm using python + requests, have read https://docs.atlassian.com/atlassian-confluence/REST/latest/ and https://developer.atlassian.com/confdev/confluence-rest-api/confluence-rest-api-examples but can't get it working.
I am new to REST but have been doing python for years so maybe there is something easy I'm missing. When locally hosted, the provided python example worked simply substituting our domain. Now I've substituted for the new domain but just get 404s back. This is extremely frustrating.
Hi @Pat Corwin,
Make sure you've got the REST API URLs correct - They will be of the form "https://<yourdomain>.atlassian.net/wiki/rest/api/latest/<method>"
People often forget the "/wiki" part when using the APIs in the Atlassian Cloud.
Cheers,
Joe.
Thanks, "/wiki/" was totally it. It might be helpful to note that in either of the pages I linked to in the question. I didn't even notice that change and it appears others don't either.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Pat,
Please make sure your domain is set to https://instance.atlassian.net/wiki and not just https://instance.atlassian.net.
If that doesn't help, please clarify a little on what error you are receiving, and which call you are using.
I hope this helps.
Cheers,
Clarissa.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Pat,
Thank you for your question.
As @Joe Clark [Atlassian] has mentioned, there are things to be considered, most likely the URL used and the context path (wiki).
Please, find below an example in Python to the /rest/api/content [GET]:
# =============== # get content # =============== import requests import json # [CONFLUENCE-BASE-URL], i.e.: https://<yourdomain>.atlassian.net/wiki url = '[CONFLUENCE-BASE-URL]/rest/api/content' headers = {'Content-Type': 'application/json'} # get content page # [USERNAME], i.e.: myuser # [PASSWORD], i.e.: passABC r = requests.get(url, auth=('[USERNAME]', '[PASSWORD]'), headers=headers) print(r.status_code) print(r.text) #print(r.content)
If you find this answer useful, I would kindly ask you to accept it so the same will be visible to others who might be facing the same issue you have inquired.
Thank you for your understanding.
—
Kind regards,
Rafael P. Sperafico
Atlassian Support
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.