Событие «Покупка» пикселя Facebook: «content_ids» или «contents»: [{'id'}] - PullRequest
0 голосов
/ 19 февраля 2020

В событии «Покупка» параметры «content_ids» и «id» одинаковы (но разный синтаксис)? И где их можно увидеть в FB Analytics?

  fbq('track', 'Purchase', {
    value: 10,
    currency: 'GBP',
    content_ids: 'sku123'     // this is the first parameter
  });

против

  fbq('track', 'Purchase', { 
    product_catalog_id: 'abc',
    content_type: 'product',
    contents: [
        {
            id: ''     // this is the second parameter
        }
    ]
    }
  );
...