Hello GN,
Thank you for your question.
You could be running the following, if suits you:
import requests import json # [BAMBOO-BASE-URL], i.e.: http://localhost:8085 url = '[BAMBOO-BASE-URL]/rest/api/latest/info' headers = {'Content-Type': 'application/json'} # create page # [USERNAME], i.e.: admin # [PASSWORD], i.e.: admin r = requests.get(url, headers=headers, auth=('[USERNAME]', '[PASSWORD]')) print(r.status_code) print(r.text)
If you find this answer useful, I would kindly ask you to accept it so the same will be visible to others who might be facing the same issue you have inquired.
Thank you for your understanding.
—
Kind regards,
Rafael P. Sperafico
Atlassian Support
That did the trick! Thanks! Very helpful!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.