File size: 562 Bytes
56d74b6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # coding=utf-8
from atlassian import Confluence
from atlassian.confluence import ApiError
""" This example shows a way to get the real reason for an exception"""
try:
confluence = Confluence(
url="http://some_site_without_permission.com",
username="admin",
password="admin",
)
result = confluence.get_user_details_by_username(username="gonchik.tsymzhitov", expand="status")
except ApiError as e:
print("FAILURE: {}, caused by {}".format(e, e.reason if e.reason is not None else "unknown reason"))
else:
print(result)
|