How to disable Collaborative Editing through REST API call
プラットフォームについて: Data Center - この記事は、Data Center プラットフォームのアトラシアン製品に適用されます。
このナレッジベース記事は製品の Data Center バージョン用に作成されています。Data Center 固有ではない機能の Data Center ナレッジベースは、製品のサーバー バージョンでも動作する可能性はありますが、テストは行われていません。サーバー*製品のサポートは 2024 年 2 月 15 日に終了しました。サーバー製品を利用している場合は、アトラシアンのサーバー製品のサポート終了のお知らせページにて移行オプションをご確認ください。
*Fisheye および Crucible は除く
目的
If you are unable to edit pages you might need to temporarily disable the Collaborative Editor while following the Troubleshooting Collaborative Editing guide. Sometimes the Collaborative Editor cannot be disabled via the UI as described in Administering Collaborative Editing. If you are affected by this, you can alternatively disable it through a REST call.
ソリューション
Disabling Collaborative Editing will delete any shared drafts that might exist.
- Send a POST to
<base_url>/confluence/rest/synchrony-interop/disable
Sample Python script that will disable Collaborate Editing:
import requests def main(): # Change the following to work with your Confluence instance including any context path base_url = 'http://localhost:8090/' username = 'admin' password = 'admin' # End change block session = requests.session() session.auth = (username, password) headers = {'X-Atlassian-Token': 'no-check'} resp = session.post('{0}/rest/synchrony-interop/disable'.format(base_url), headers=headers) print(resp) print(resp.content) main()