Untitled
Anonymous
plain_text
03/13/2025 5:03 AM
448 B
17
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