如何在React Native中启动ViewContent facebook事件?

时间:2019-12-10 17:20:04

标签: facebook react-native facebook-sdk-4.0

我正在尝试使用 react-native-fbsdk的 0.10.1 版本触发 ViewContent 事件(https://developers.facebook.com/docs/facebook-pixel/reference#events。这应该在您在图像中看到的面板中注册,但是它仍然显示为红色。

enter image description here

SDK提供给我启动事件的唯一功能是 logEvent 函数。所以我这样做:

 const viewContentData = {
    content_name: name,
    content_category: type,
    content_ids: id,
    content_type: type,
    value: amount,
    currency,
  };

  yield call([AppEventsLogger, 'logEvent'], 'ViewContent', viewContentData);

有人知道如何使它工作吗?

非常感谢您:)

1 个答案:

答案 0 :(得分:0)

您尝试在Web或移动设备上使用它吗?我相信要进行本机响应,您必须使用移动事件SDK集成: https://developers.facebook.com/docs/react-native/app-events

如果要在Web上使用它,您要做的就是正确初始化像素基本代码,然后通过fbq帮助函数触发事件: https://developers.facebook.com/docs/facebook-pixel/advanced/