Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...


API call to Confluence


Code Block
titlerequest to confluence API
urlbase = "https://thefreetelecomuni.atlassian.net/wiki"
url = urlbase+"/rest/api/space"

response = requests.request(
   "GET",
   url,
   headers=headers,
   auth=auth,
   verify=False
)


look for:  results


in results, look for key,id and name
under "_expandable" get the homepage

Image Added