如何通过Google跟踪代码管理器在对讲中设置事件跟踪

时间:2016-08-23 08:44:12

标签: android ios google-tag-manager event-tracking intercom

在我们的项目中,我们已经为Google Analytic使用 Google跟踪代码管理器,现在我们还必须向内部通信发送事件,如何设置使用Google跟踪代码管理器在对讲中进行事件跟踪,而不是在项目中编写代码,任何人都有使用内部通信的经验,有人可以指导我这个

注意:: am使用GTM Mobile容器Android v4

2 个答案:

答案 0 :(得分:1)

1。在GTM Web界面中定义函数调用标记,根据触发器需要参数,请找到函数调用标记配置的附加图像

enter image description here enter image description here

2。在您的项目代码中创建一个类IntercomActionEventsFunctionTagHandler,它将实现FunctionCallTagCallback      public class IntercomActionEventsFunctionTagHandler implements Container.FunctionCallTagCallback { @Override public void execute(final String functionName, final Map eventDataMap) { } }

3. 注册您的FunctionCallTagCallBack加载ContainerHolder      containerHolder.getContainer().registerFunctionCallTagCallback("ActionEventsFunction", new IntercomActionEventsFunctionTagHandler());

4. 当Ever事件被触发时自动你的HandlerCode将获得触发器然后最终内部执行方法Log Your KeyPairs map to the Intercom      Intercom.client().logEvent("ActionEvents", eventDataMap);

5。您的最终课程如下      public class IntercomActionEventsFunctionTagHandler implements Container.FunctionCallTagCallback { @Override public void execute(final String functionName, final Map eventDataMap) { Intercom.client().logEvent("ActionEvents", eventDataMap); } }

6. 。不要忘记在网络界面中创建版本或发布GTM配置更改

答案 1 :(得分:0)

您必须在Tags侧边菜单下使用自定义HTML标记选项,并编写Javascript代码以将事件发送到内部通信。这篇blog帖子可能会有所帮助