Создание xml-фида для динамического ретаргетинга/en — различия между версиями

Материал из Справочник сервиса Kadam.net
Перейти к: навигация, поиск
(Новая страница: «Creating xml feed for dynamic retargeting»)
 
(Новая страница: «Creating an xml feed is necessary if the advertiser does not have his own informer, which shows the user the goods he is interested in. Based on the xml-feed, an…»)
 
Строка 1: Строка 1:
 
<languages/>
 
<languages/>
Создание xml-фида необходимо в том случае, если у рекламодателя нет собственного информера, который показывает юзеру интересовавшие его товары. На основании xml-фида происходит автоматическая геннерация баннеров, с возможностью самостоятельно разработать дизайн.
+
Creating an xml feed is necessary if the advertiser does not have his own informer, which shows the user the goods he is interested in. Based on the xml-feed, an automatic banner generation takes place, with the ability to independently develop a design.
Для использования функции динамического ретаргетинга в систему kadam необходимо загрузить базу товаров. На основании данных из этой базы будут формироваться динамические баннера.  
+
 
База товаров должна быть в формате xml-фида версии 1.0.
+
To use the dynamic retargeting function, the product database must be loaded into the kadam system. Based on the data from this database, dynamic banners will be formed.
Структура xml:
+
 
 +
The base of goods must be in the format of the xml-feed version 1.0.
 +
 
 +
Xml structure:
 
<pre>
 
<pre>
 
<offers>
 
<offers>
Строка 21: Строка 24:
 
</offers>
 
</offers>
 
</pre>
 
</pre>
Где:
+
 
<offers></offers> пределяет начало и конец документа.
+
Where:
<OID> - crc32 от названия товара без пробелов
+
<offers> </offers> limits the beginning and end of the document.
Блок <data></data> включает в себя набор обязательных параметров:
+
 
 +
<OID> - crc32 from the product name without spaces
 +
 
 +
The <data> </data> block includes a set of required parameters:
 
<ul>
 
<ul>
      <li><name></name> - название товара</li>
+
      <li> <name> </name> - product name </li>
      <li><price></price> - текущая цена товара</li>
+
      <li> <price> </price> - the current price of the product </li>
      <li><url></url> - ссылка на страницу товара</li>
+
      <li> <url> </url> - link to product page </li>
      <li><image></image> - изображение товара</li>
+
      <li> <image> </image> - product image </li>
 
</ul>
 
</ul>
При отсутствии хотя бы одного из обязательных параметров товара динамический баннер для этого товара не будет создан.
+
 
Блок <additional_info></additional_info> содержит набор необязательных параметров. Например:
+
In the absence of at least one of the required product parameters, a dynamic banner for this product will not be created.
 +
 
 +
The <additional_info> </additional_info> block contains a set of optional parameters. For example:
 +
 
 
<ul>
 
<ul>
      <li><id></id> - уникальный идентификатор товара</li>
+
      <li> <id> </id> - unique product identifier </li>
      <li><discount></discount> - размер скидки</li>
+
      <li> <discount> </discount> - discount amount </li>
      <li><currency></currency> - валюта</li>
+
      <li> <currency> </currency> - currency </li>
 
</ul>
 
</ul>
Блок может содержать любые другие параметры, которые необходимо вывести в динамическом баннере.  
+
 
Разработка динамического баннера для каждого клиента индивидуальна.  
+
The block can contain any other parameters that need to be displayed in a dynamic banner.
При наличии xml-фида другого формата необходимо обратиться к вашему менеджеру для интеграции.
+
 
 +
Development of a dynamic banner for each client is individual.
 +
 
 +
If there is an xml feed of a different format, please contact your manager for integration.

Текущая версия на 14:43, 11 февраля 2019

Другие языки:
English • ‎русский

Creating an xml feed is necessary if the advertiser does not have his own informer, which shows the user the goods he is interested in. Based on the xml-feed, an automatic banner generation takes place, with the ability to independently develop a design.

To use the dynamic retargeting function, the product database must be loaded into the kadam system. Based on the data from this database, dynamic banners will be formed.

The base of goods must be in the format of the xml-feed version 1.0.

Xml structure:

<offers>
	<OID>
		<data>
			<name></name> 
			<price></price>
			<URL></URL>
			<image></image>
		</data>
		<additional_info>
			<id></id>
			<currency></currency>
			<discount></discount>
		</additional_info>
	</OID>
</offers>

Where: <offers> </offers> limits the beginning and end of the document.

<OID> - crc32 from the product name without spaces

The block includes a set of required parameters:

          
  • <name> </name> - product name
  •       
  • <price> </price> - the current price of the product
  •       
  • <url> </url> - link to product page
  •       
  • <image> </image> - product image

In the absence of at least one of the required product parameters, a dynamic banner for this product will not be created.

The <additional_info> </additional_info> block contains a set of optional parameters. For example:

          
  • <id> </id> - unique product identifier
  •       
  • <discount> </discount> - discount amount
  •       
  • <currency> </currency> - currency

The block can contain any other parameters that need to be displayed in a dynamic banner.

Development of a dynamic banner for each client is individual.

If there is an xml feed of a different format, please contact your manager for integration.