我是RestFB的新手。 我试图获取有关如何从购买(和相关内容ID)获取数据的信息,由以下代码跟踪,但没有成功。
<script>
! function(f, b, e, v, n, t, s) {
if (f.fbq) return;
n = f.fbq = function() {
n.callMethod ?
n.callMethod.apply(n, arguments) : n.queue.push(arguments)
};
if (!f._fbq) f._fbq = n;
n.push = n;
n.loaded = !0;
n.version = '2.0';
n.queue = [];
t = b.createElement(e);
t.async = !0;
t.src = v;
s = b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t, s)
}(window,
document, 'script', '//connect.facebook.net/en_US/fbevents.js');
// Insert Your Custom Audience Pixel ID below.
fbq('init', 'XXXXXXXXXXXXXXXX');
// Replace the values for the parameters below with actual values of the purchase
fbq('track', 'Purchase', {
content_name: '',
content_category: '',
content_ids: ['4363319'],
content_type: 'product',
value: 1.0,
currency: 'EUR'
});
我也看过&#34; Graph API Explorer&#34;,但我找不到这种信息。
有人可以帮我解决这个问题吗?
提前致谢!