我们是否有任何免费工具可以从linux机器编辑Confluence页面?感谢回应。 感谢。
答案 0 :(得分:1)
从Linux机器编辑是什么意思?您是否希望通过终端编辑页面?如果是这样 - 您可以使用Confluence REST API
和curl
来修改您的网页:
curl -u admin:admin -X PUT -H 'Content-Type: application/json' -d'{"id":"3604482","type":"page","title":"new page","space":{"key":"TST"},"body":{"storage":{"value":"<p>This is the updated text for the new page</p>","representation":"storage"}},"version":{"number":2}}' http://URL:PORT/confluence/rest/api/content/3604482 | python -mjson.tool
以上curl
将编辑Confluence中已存在的页面。您可以查看REST API示例here