【发布时间】:2017-11-16 06:31:20
【问题描述】:
我想获得上下文页面汇合, 使用python模块atlassian-python-api
https://github.com/AstroTech/atlassian-python-api
找到如何创建新页面的示例
from atlassian import Confluence
confluence = Confluence(
url='http://localhost:8090',
username='admin',
password='admin')
status = confluence.create_page(
space='DEMO',
title='This is the title',
body='This is the body. You can use <strong>HTML tags</strong>!')
print(status)
如何获取上下文,本页示例 http://conf01:8080/pages/viewpage.action?pageId=111113 ?
【问题讨论】:
-
你检查过示例文件夹吗?我相信他们确实拥有它github.com/AstroTech/atlassian-python-api/blob/master/examples/…
-
已检查示例文件夹并已找到解决方法。请写下答案。
标签: python confluence confluence-rest-api atlassian-python-api