-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Demographics and Interest report #12
Comments
not tested at all and probably not supported. here a quick overview on how it works It is mainly a backend setting Again not tested but here my guess what could work by default analytics will be able to track the geolocation and/or IP of users but because this remarketing also need to link google analytics with google adwords "As is" uananytlics does not
so you could test that
as mentioned in Smart Lists
So it is mainly a backend thing and it could work. Also look into Adwords help - Reach people who visited your site |
Thank you for your feedback! I've tried to go through these steps and figured out that that this backend-method is only effective for website users. To enable demographic and interests reports for app users I need to updated app-tracking code per the methods outlined. Is 'enableAdvertisingIdCollection' method currently supported by as3-universal-analytics? |
the backend of google analytics should have the same behaviour for web and app. This particular method Did you actually tried it ? At this point, imho that's your only option, try to activate the backend option |
I've enabled Demographics and Interest Reports feature in Google Analytics application properties. But still reports are empty. For web everything works fine (I can see demographic and interests reports), but for Adobe AIR mobile apps reports are empty. Please advice. |
Is there anyone who managed to report using demographics? What I tries was: As well as some other variations ("true",1", etc) So far, no luck. |
I did not have time to investigate more than what was said before eg. you have to login to your Google Analytics account for something like it will not work as you can only set parameters that follow the there is a data model based on those parameters, you can to add ANY string if you have to add a custom parameter you have to prepend the string with example: tracker.set( "&abc", "123" );
using at best will do nothing So I looked into it a bit more
and the "trick" is that it is not part of the measurement protocol but an added option (hence why it does not show up in the reference) we can see an example here with a redirect URL
so technically you could define this var tracker:AppTracker = new AppTracker();
tracker.set( "&idfa", "BBA44F63-E469-42BA-833A-2AC550310CB3" ); and also pass the campaign parameters: but the main problem is to retrieve those parameters during the app install so yeah ideally we would need an
and we would need to inject this data into the uanalytics AS3 lib All that is quite time consuming and don;t really have time now to do that Anyway, "as is" it ca not be done with only AS3 and/or the AIR API |
How to enable Demographic and Interest reports for Adobe AIR applications? What configuration and changes to tracking code are required?
The text was updated successfully, but these errors were encountered: