Skip to main content

Adobe Experience Manager Sites

Welcome to the Adobe Experience Manager Community! Connect with peers to ask questions, share best practices, explore release updates, and contribute ideas that shape the future of Adobe Experience Manager.

  • 10000+ Total posts
  • 141,654 Total replies
8562 Total posts
Adobe Experience Manager: cURLでアセットをダウンロードする方法

Note: This is a Japanese translation of an Adobe Experience League Knowledge Base article. Click this link for the original English version.   【目的】 cURLを使用することでコマンドでアセットを纏めてダウンロード出来ます。主に次のユースケースで有用です。 自動化したい時 ダウンロード対象のアセットが複数のフォルダに跨る時 フォルダ配下の一部アセットのみをダウンロードしたい時   【環境】AEM 6.5   【対応方法】ダウンロード対象のアセットやフォルダのパスをcURLのパラメータに渡します。   特定のアセットをダウンロード $ curl -u user:password -o <出力ファイル名> http://localhost:4502/<アセットのパス>.assetdownload.zip   例)$ curl -u user:password -o download_asset.zip http://localhost:4502/content/dam/we-retail/en/features/tracking.png.assetdownload.zip   特定のフォルダ配下を一括でダウンロード $ curl -u user:password -o <出力ファイル名> http://localhost:4502/<フォルダのパス>.assetdownload.zip   例)$ curl -u user:password -o download_asset.zip http://localhost:4502/content/dam/we-retail/en/people.assetdownload.zip   複数のフォルダやアセットを一括でダウンロード $ curl -u user:password -o <出力ファイル名> -F "path=<パスA>" -F "path=<パスB>" -F ... http://localhost:4502/<パスA>.assetdownload.zip   例)$

Adobe Experience Manager: admin以外のユーザーにWebコンソールへのアクセスを許可する方法

Note: This is a Japanese translation of an Adobe Experience League Knowledge Base article. Click this link for the original English version.   【目的】本記事では、admin以外のユーザーにWebコンソールへのアクセスを許可する方法をご紹介します。   【環境】AEM 6.5   【対応方法】Apache Sling Web Console Security ProviderにOSGiのWebコンソールへのアクセスを許可するユーザーまたはグループを追加します。ユーザーは直接追加せず、管理用のグループを作成して追加することをお勧めします。   1. グループを作成し、そのグループにユーザーを追加します 2. Webコンソール(http://localhost:4502/system/console/configMgr)を開きます 3. Apache Sling Web Console Security Providerの設定を開きます 4. Group Names にステップ1.で作成したグループを追加します 5. Saveします   <留意事項>・上記は以下記事の抄訳/翻訳となります。KB記事タイトル(英語) . Adobe Experience Manager: How to allow non-admin users to access Web Console. February 17, 2023, https://experienceleague.adobe.com/docs/experience-cloud-kcs/kbarticles/KA-21527.html, (参照 2023-02-20).・本記事にいただいたコメントへの返信はお約束できません。あらかじめご了承ください。