Hi,
I try to generate my first Confluence page with following code:
from atlassian import Confluence
...
confluenceBaseUrl = myConfluenceBaseUrl
pageId = ...
print("connect to confluence ...")
confluence = Confluence(url=confluenceBaseUrl,username=myuser,password=mypass)
status = confluence.create_page(
space='TEST',
parent_id=pageId,
title='Made by Python',
type='page',
body='This is the body')
As a result I get:
requests.exceptions.HTTPError: Could not create content with type page
I have write access to the parent page and user and pass are checked. What am I doing wrong?
I hope this is the right place to ask for this.
SOLVED.
It was a problem with the name of the SPACE, that has to exist - this was not clear to me.
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.