Untitled

 avatar
unknown
plain_text
4 days ago
334 B
5
Indexable
try:
    # Example: Fetch content by ID
    content_id = 5019899394  # Replace with your content ID
    content = confluence.get_page_by_id(content_id)
    print(f"Content Title: {content['title']}")
    print(f"Content Body: {content['body']['storage']['value']}")

except Exception as e:
    print(f"An error occurred: {e}")
Editor is loading...
Leave a Comment