在android上发布Flurry事件时出错

时间:2015-06-22 14:31:25

标签: flurry flurry-analytics

当我尝试使用时:

Map

返回FlurryAgent.logEvent("Read_article", articleParams);

我无法找到造成这个问题的原因,我也没有在他们的文档中发现任何相同的内容。

1 个答案:

答案 0 :(得分:2)

以下是来自https://developer.yahoo.com/flurry/docs/analytics/gettingstarted/events/android/#capture-event-parameters

的正确方法
// Capture author info & user status
Map<String, String> articleParams = new HashMap<String, String>();

//param keys and values have to be of String type
articleParams.put("Author", "John Q");
articleParams.put("User_Status", "Registered");

//up to 10 params can be logged with each event
FlurryAgent.logEvent("Article_Read", articleParams);

我怀疑事件是在未设置参数的情况下触发的。

另一种可能的可能性是在调用FlurryAgent.init后立即触发事件(this,MY_FLURRY_APIKEY);在某些情况下,此类事件无法记录。如果您怀疑是这种情况,请在短暂停顿后触发事件。