Data pipeline export request fails with XSRF check failed error
プラットフォームについて: Data Center - この記事は、Data Center プラットフォームのアトラシアン製品に適用されます。
このナレッジベース記事は製品の Data Center バージョン用に作成されています。Data Center 固有ではない機能の Data Center ナレッジベースは、製品のサーバー バージョンでも動作する可能性はありますが、テストは行われていません。サーバー*製品のサポートは 2024 年 2 月 15 日に終了しました。サーバー製品を利用している場合は、アトラシアンのサーバー製品のサポート終了のお知らせページにて移行オプションをご確認ください。
*Fisheye および Crucible は除く
問題
When attempting to export data using the data pipeline API in Confluence via the command line, the export fails with the following error in the console:
XSRF check failed
原因
The Confluence REST API is protected from Cross Site Request Forgery (XSRF/CSRF) attacks for security reasons.
ソリューション
To call protected APIs from your command line or external systems you can add the X-Atlassian-Token
header to each request, and set the value to no-check
. Adding this header to a request bypasses the server-side XSRF check and allows the request to be fulfilled. This is only available for requests made by command line tools or external systems, not browser requests.
Here's an example export request with the X-Atlassian-Token
header. We used cURL and a personal access token for this request.
curl -H "Authorization:Bearer <personal-access-token>" -H "X-Atlassian-Token: no-check"
-X POST http://<base-url>/rest/datapipeline/latest/export
This issue only affects Confluence.