Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Implement facebook pixel flutter

I am trying to integrate Facebook pixel in my ecommerce flutter app to show ads according to customers search behavior but could not get any documentation or library for flutter. How can I integrate facbook pixel in Flutter app?

like image 507
Nabin Dhakal Avatar asked Mar 24 '21 07:03

Nabin Dhakal


People also ask

How to connect Facebook app with flutter?

In order to connect our Facebook app with its services with the Flutter project, we are going to make use of the plugin called flutter_facebook_auth. This package enables us to add a Facebook login to our Flutter app, get user information, profile picture, and more.

How do I create a Facebook pixel for my event?

Create a Facebook pixel Go to your Pixels tab in Events Manager. Click Create a Pixel. Click Create in the box that appears to finish creating your pixel.

How do I use the Facebook pixel helper?

The Facebook Pixel Helper is a troubleshooting tool that helps you find out if your pixel is working correctly. It's a Chrome plugin you can use to see if there's a Facebook pixel installed on a website, check for errors, and understand the data that's coming from a pixel.

How do I set up pixel on my website?

Click Set up Pixel. Click Email Instructions to a Developer. Enter the recipient’s email address. Click Send at the bottom of the page. Go to the Pixels tab in Events Manager. Click Set up Pixel. Click Manually Install Pixel Code Yourself. Go to your website's code and find the header of your website.


1 Answers

Facebook Pixel is strictly for webapps, but for native app development, Facebook SDK is required.

Flutter Facebook Login Package will provide you, not only the login but also the required SDK.

Next up, you probably want Facebook_App_Events Package, which is going to help you in sending tracked data to FB, for eg. when a person clicks to watch a video on your app or makes a purchase etc.

An app event is an action that takes place in your app or on your web page such as a person installing your app or completing a purchase. Facebook App Events allows you to track these events to view analytics, measure ad performance, and build audiences for ad targeting.

like image 147
Druhin Bala Avatar answered Oct 18 '22 17:10

Druhin Bala