Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set up Facebook analytics in Google Tag Manager for Android

I am using Google Tag Manager for sending analytics to various channels like Google Analytics. Now I want to send analytics to Facebook as well but I could not find any way to do so.

PS: The question is for Android app not for website. I had found multiple ways to send events to Facebook for website like: https://www.advertisemint.com/install-facebook-pixel-google-tag-manager/

I have tried to do so for Android Container as well but it does not have CustomHtml option while creating Tag. I think their might be some different approach for this.

like image 616
Arushi Jain Avatar asked Aug 29 '17 10:08

Arushi Jain


People also ask

How do I add Facebook to Google Tag Manager?

Go to your FB Pixel in the Events Manager, open your pixel and in the top right corner click Set Up > Install Pixel. Then choose Manually add pixel code to website and copy the main code: In Google Tag Manager, go to Tags > New > Custom HTML tag and paste the code.

Does Google Tag Manager work with Facebook?

Using Google Tag Manager (GTM) to help implement Facebook pixels will help you consistently and easily track conversion and events from your website, allowing you to prove the success (or failure) of your advertising while building valuable data inside of Facebook that can be used for future targeting.


1 Answers

If you want to use GTM in order to send events to FB analytics, you'll have to select "function call" when creating your tag in GTM. At this time, you'll have to populate the key-value pairs that you want to be in the payload your app will receive. You'll also have to reference a class which will handle this tag. This class will implement from com.google.android.gms.tagmanager.CustomTagProvider. Here is how a simple tag looks like in our GTM interface : simple FB tag for GTM

I helped to develop a connector called Cargo for my company, which helps to collect analytics through different platforms on mobile apps. Do not hesitate to take a look at it, or even to adopt it, and to pull some changes if you want to ! :)

  1. Here is our class Tags which handles the custom function calls set in GTM.
  2. Then we route the call to the selected handler/connector, depending on a parameter in the payload given by the container. This method does the job.
  3. Last, but not least, we route the call to the correct method of the selected handler/connector, which receives the payload with all the parameters you set in your GTM interface.

I hope this helps !

like image 70
n3wbie Avatar answered Sep 22 '22 22:09

n3wbie