npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

capacitor-facebook-events

v8.0.0

Published

Facebook events tracking in Capacitor applications

Downloads

6,154

Readme

capacitor-facebook-events

Facebook events tracking in Capacitor applications

Install

npm i --save capacitor-facebook-events
npx cap sync

Quick setup

  1. Install via npm

  2. Add the following to your ios/App/App/Info.plist file (replace YOUR_FB_APP_ID and YOUR_FB_CLIENT_TOKEN with values from your Facebook app)

<key>FacebookAppID</key>
<string>YOUR_FB_APP_ID</string>
<key>FacebookClientToken</key>
<string>YOUR_FB_CLIENT_TOKEN</string>
<key>CFBundleURLTypes</key>
<array>
  <dict>
    <key>CFBundleURLSchemes</key>
    <array>
      <string>fbYOUR_FB_APP_ID</string>
    </array>
  </dict>
</array>
  1. Add the following to your android/app/src/main/res/values/strings.xml file (replace YOUR_FB_APP_ID and YOUR_FB_CLIENT_TOKEN accordingly)
<resources>
  <!-- Existing strings ... -->
  <string name="facebook_app_id">YOUR_FB_APP_ID</string>
  <string name="facebook_client_token">YOUR_FB_CLIENT_TOKEN</string>
</resources>
  1. Add the following to your android/app/src/main/AndroidManifest.xml file (as is, don't replace anything):
<manifest ...>
  <application ...>
    <!-- Existing data ... -->

    <!-- Facebook App ID and Client Token -->
    <meta-data
        android:name="com.facebook.sdk.ApplicationId"
        android:value="@string/facebook_app_id" />
    <meta-data
        android:name="com.facebook.sdk.ClientToken"
        android:value="@string/facebook_client_token" />
    <meta-data android:name="com.facebook.sdk.AutoInitEnabled" android:value="true"/>
    <meta-data android:name="com.facebook.sdk.AutoLogAppEventsEnabled" android:value="true"/>
    <meta-data android:name="com.facebook.sdk.AdvertiserIDCollectionEnabled" android:value="true"/>
  </application>
</manifest>
  1. Add or update your ios/App/App/AppDelegate.swift with the following (as is, don't replace anything):
import FBSDKCoreKit

@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
  var window: UIWindow?

    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
        // Initialize the Facebook SDK (reads FacebookAppID from Info.plist)
        ApplicationDelegate.shared.application(application, didFinishLaunchingWithOptions: launchOptions)

        Settings.shared.isAutoLogAppEventsEnabled = true
        Settings.shared.isAdvertiserIDCollectionEnabled = true

        // Uncomment this to enable verbose output of Facebook SDK to XCode console
        /* Settings.shared.loggingBehaviors = Set([
            .appEvents, .networkRequests, .informational,
            .graphAPIDebugInfo, .graphAPIDebugWarning, .developerErrors
        ]) */

        return true
    }

    func applicationDidBecomeActive(_ application: UIApplication) {
      // Sends the built-in "Activate App" event (shows in Test Events)
      AppEvents.shared.activateApp()
    }
}
  1. Sync your project
npx cap sync ios
npx cap sync android

Consult the Facebook / Meta SDK documentation for more details.

API

setAdvertiserTrackingEnabled(...)

setAdvertiserTrackingEnabled(options: { enabled: boolean; }) => Promise<void>

| Param | Type | | ------------- | ---------------------------------- | | options | { enabled: boolean; } |


logEvent(...)

logEvent(options: { event: string; params?: any; }) => Promise<void>

| Param | Type | | ------------- | --------------------------------------------- | | options | { event: string; params?: any; } |


Example Usage

Logging a Registration Event

To log a registration event, use the 'fb_mobile_complete_registration' event name:

import { FacebookEvents } from 'capacitor-facebook-events';

// ...

FacebookEvents.logEvent({
    event: 'fb_mobile_complete_registration',
    params: {
// Additional parameters (optional)
    }
});

Logging a Purchase Event

For logging a purchase event, use the 'fb_mobile_purchase' event name with relevant parameters:

import { FacebookEvents } from 'capacitor-facebook-events';

// ...

FacebookEvents.logEvent({
    event: 'fb_mobile_purchase',
    params: {
        fb_content_id: 'item_id', // Item ID
        fb_content_type: 'product',
        fb_currency: 'currency_code',
        _valueToSum: amount // Purchase amount
    }
});

For a comprehensive list of events, refer to the Facebook App Events API documentation.