简体   繁体   English

有没有办法从Flurry API获取报告的用户ID?

[英]Is there a way to get reported User ID from Flurry API?

I have an iOS game using Flurry, so I'm sending to Flurry unique IDs for each player trough [Flurry setUserID:@"USER_ID"] and after some hours I'm getting this ID's from "Flurry Page >Events > Event Logs > Download CSV" to tie a user in my internal systems (as Flurry User ID is it evil? indicate); 我有一个使用Flurry的iOS游戏,所以我通过[Flurry setUserID:@“USER_ID”]向每个玩家发送Flurry唯一ID,几个小时后我从“Flurry Page> Events> Event Logs”获取此ID下载CSV“以在我的内部系统中绑定用户(因为Flurry用户ID是邪恶的吗?指示); but this is a manual process and take a lot of time. 但这是一个手动过程,需要花费很多时间。

Is there a way to get this Event Logs from Flurry API? 有没有办法从Flurry API获取此事件日志? I'm currently using: 我目前正在使用:

http://api.flurry.com/eventMetrics/Event?apiAccessCode=APIACCESSCODE&apiKey=APIKEY&startDate=STARTDATE&endDate=ENDDATE&eventName=EVENTNAME&versionName=VERSIONNAME

as Flurry indicates ( http://support.flurry.com/index.php?title=API/Code/EventMetrics ) but this gives only a summary. 正如Flurry所指出的那样( http://support.flurry.com/index.php?title=API/Code/EventMetrics ),但这只给出了摘要。

Thanks 谢谢

I contacted the Technical support, take a look at their answer 我联系了技术支持,看看他们的答案

Thank you for contacting Flurry Technical Support. 感谢您与Flurry技术支持联系。 I will be happy to answer your questions. 我很乐意回答你的问题。

I'm afraid the raw data API is no longer available as it is being phased out. 我担心原始数据API不再可用,因为它正在逐步淘汰。 Apologies for any inconvenience. 对由此带来的任何不便表示歉意。

However, as an alternative to the raw data API we have introduced a feature where you can download 100,000 rows of raw event logs from under "Events-->Event Logs" on the left navigation. 但是,作为原始数据API的替代方案,我们引入了一项功能,您可以从左侧导航中的“事件 - >事件日志”下下载100,000行原始事件日志。 Just download often so you don't miss anything. 只需经常下载,这样你就不会错过任何东西。

The user ID on Flurry is available under the Events Logs section, provided you've set it to be collected. Flurry上的用户ID可在“事件日志”部分下找到,前提是您已将其设置为要收集。

The user ID is set using this code: FlurryAgent.setUserID(String); 使用以下代码设置用户ID:FlurryAgent.setUserID(String);

The Flurry userID can be used to tie a user back to your internal systems. Flurry userID可用于将用户绑定回内部系统。 The userID will travel along with the user through out the event logs. userID将与用户一起通过事件日志。 It is up to you to ensure that the userID is unique for each individual user. 您可以确保userID对每个用户都是唯一的。 It is highly recommended to seek user permission before collecting any data for analytics. 强烈建议在收集任何分析数据之前寻求用户许可。

Please let me know if I can assist further. 如果我能进一步协助,请告诉我。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM