Import tag list into Tag Administration console | Adobe Higher Education
Skip to main content
October 16, 2015
解決済み

Import tag list into Tag Administration console

  • October 16, 2015
  • 2 の返信
  • 891 ビュー

I have an existing tag list that I want to import into the Tag Administration console.

(See: https://docs.adobe.com/docs/en/cq/5-3/wcm/tag_admin.html#Creating%20or%20Editing%20Tags%20and%20Namespaces)

Is there a utility for importing an existing tag list, and if so, what is the preferred format (e.g., CSV)?

Thanks

このトピックへの返信は締め切られました。
ベストアンサー smacdonald2008

In AEM - tags are typically created manually. However --  you can write a custom service that imports tags using the AEM TagManager API:

https://docs.adobe.com/docs/en/cq/5-6-1/javadoc/com/day/cq/tagging/TagManager.html

You can build the servie to upload a CSV file (or other file like excel) and create tags using this API. 

2 の返信

smacdonald2008
Level 10
October 16, 2015

In AEM - tags are typically created manually. However --  you can write a custom service that imports tags using the AEM TagManager API:

https://docs.adobe.com/docs/en/cq/5-6-1/javadoc/com/day/cq/tagging/TagManager.html

You can build the servie to upload a CSV file (or other file like excel) and create tags using this API. 

dan_segal作成者
October 16, 2015

Thanks for your prompt response.  Very helpful.

Dan