You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi,
I am trying to create page using python requests module and getting 415.
here is my python function :
def create_page(contenturl, headers):
create_page = { "type": "page", "title": "test", "space": {"key": space_key}, "ancestors": [{"id": parent_page_id}], "status": "current", "body": { "storage": {"value": "This is a new page", "representation": "storage",} }, }
response = requests.post(contenturl, data=create_page, headers=headers) print(response.status_code)
here are my headers:
headers = { "accept": "application/json", "authorization": "Basic %s" % encoded,}
I do not see authorization is issue here because that i am able to make get content and delete page calls. I have tried adding "X-Atlassian-Token": "no-check" but still gets 415. My user also has full access to write and read.
any help appreciated.
Regards
Sukh