REST Api から Confluence Space のコンテンツ全体を取得することは可能ですか?
この例を試してみます curl -u admin:admin http://localhost:8080/confluence/rest/api/content/3965072?expand=body.storage
ただし、これは最初のページのコンテンツにすぎません。
REST Api から Confluence Space のコンテンツ全体を取得することは可能ですか?
この例を試してみます curl -u admin:admin http://localhost:8080/confluence/rest/api/content/3965072?expand=body.storage
ただし、これは最初のページのコンテンツにすぎません。
はい、次のようなことをする必要があります:
http://localhost:8080/confluence/rest/api/space/ SPACE_KEY /content?expand=body.storage
次のように、特定の種類のコンテンツ アイテム (ページまたはブログ投稿) を取得することもできます。
http://localhost:8080/confluence/rest/api/space/SPACE_KEY/content/ページ?expand=body.storage
http://localhost:8080/confluence/rest/api/space/SPACE_KEY/content/ blogpost ?expand=body.storage
ページネーションを考慮する必要があります: https://developer.atlassian.com/confdev/confluence-rest-api/pagination-in-the-rest-api