Is there any way to get user id from Flurry API?

I have an iOS game using Flurry, so I send unique Flurry identifiers for each game channel [Flurry setUserID: @ "USER_ID"] and after a few hours I get this identifier with "Flurry Page> Events> Event Logs> Download CSV" to connect the user with my internal systems (how is the Flurry User ID evil? ); but this is a manual process and takes a lot of time.

Is there a way to get this event log from the Flurry API? I am currently using:

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

as Flurry points out ( http://support.flurry.com/index.php?title=API/Code/EventMetrics ), but this only gives a brief description.

thanks

+4
source share
1 answer

I contacted Technical Support, take a look at their answer

Thank you for contacting Flurry Technical Support. I will be happy to answer your questions.

I’m afraid that the raw data API is no longer available as it is phasing out. I apologize for any inconvenience.

However, as an alternative to the raw data API, we have introduced where you can load 100,000 lines of event logs from the section "Events β†’ Event Logs" in the left navigation panel. Just download often so you don’t miss anything.

The Flurry user ID is available in the Event Logs section if you have set it for collection.

The user ID is set using this code: FlurryAgent.setUserID (String);

The Flurry user ID can be used to bind the user to your internal system. The user ID will be moved along with the user through the event logs. You must ensure that the user ID is unique to each individual user. It is strongly recommended that you request user permission before collecting any data for analytics.

Please let me know if I can help further.

+1
source

All Articles