Untitled
unknown
plain_text
8 months ago
334 B
6
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