Skip to main content

Reusable Django app to track Meta/Facebook CAPI events server-side.

Project description

Django Facebook CAPI Dashboard

A reusable Django package to track Facebook (Meta) Conversions API events server-side, with built-in logging and admin dashboard.


📦 Installation

pip install django-facebook-capi

⚙️ Setup

1. Add to INSTALLED_APPS

INSTALLED_APPS = [
    ...
    'django_facebook_capi',
]

2. Add Required Settings

In your settings.py, add:

FACEBOOK_PIXEL_ID = 'your_facebook_pixel_id'
FACEBOOK_CAPI_ACCESS_TOKEN = 'your_capi_access_token'

You can generate these from your Meta Events Manager.

3. Migrate Database

python manage.py migrate django_facebook_capi

This will create a model to log all tracked events in the admin.

4. Optional: Enable Django Admin

Ensure django.contrib.admin is enabled and your superuser is created:

python manage.py createsuperuser

Visit /admin/ and look for Facebook Event Logs.


🚀 Usage

Import utilities into your views

from django_facebook_capi.capi_utils import (
    track_page_view,
    track_view_content,
    track_lead_form_submission,
    track_add_to_cart,
    track_initiate_checkout,
    track_purchase,
    track_custom_event,
)

📝 Event Tracking Examples

✅ PageView

track_page_view(request)

👀 ViewContent

track_view_content(
    request,
    content_name="Red T-Shirt",
    content_category="Apparel",
    content_ids=["sku123"]
)

📝 Lead Form Submission

track_lead_form_submission(request)

🛒 Add to Cart

track_add_to_cart(
    request,
    content_ids=["sku123"],
    value=799,
    currency='INR'
)

💳 Initiate Checkout

track_initiate_checkout(
    request,
    content_ids=["sku123", "sku124"],
    value=1598,
    currency='INR'
)

💰 Purchase

track_purchase(
    request,
    content_ids=["sku123", "sku124"],
    value=1598,
    currency='INR',
    transaction_id='txn_001'
)

⚙️ Custom Event

track_custom_event(
    request,
    event_name="StartTrial",
    custom_data={"plan": "Pro", "value": 0}
)

📊 Logging & Admin Panel

All events sent via this package are logged into your database and can be viewed in the Django Admin dashboard. Each log includes:

  • Event name
  • Response status code
  • Response from Meta
  • Source URL
  • Timestamp

🧠 Notes

  • You must share your Meta Pixel's Business Settings with your CAPI token if using a system user.
  • Make sure _fbc and _fbp cookies are available in requests for optimal matching.
  • Email and phone values will be hashed with SHA256 before sending.

💡 Roadmap

  • Retry failed events
  • Custom signal support
  • Admin filtering by status code
  • Retry/resend via admin actions

🧑‍💻 Contributing

  1. Fork the repo
  2. Make changes
  3. Submit a PR

📝 License

MIT @ 2025

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-facebook-capi-0.1.0.tar.gz (5.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_facebook_capi-0.1.0-py3-none-any.whl (6.3 kB view details)

Uploaded Python 3

File details

Details for the file django-facebook-capi-0.1.0.tar.gz.

File metadata

  • Download URL: django-facebook-capi-0.1.0.tar.gz
  • Upload date:
  • Size: 5.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.6

File hashes

Hashes for django-facebook-capi-0.1.0.tar.gz
Algorithm Hash digest
SHA256 9b0255c8e5b903ee7395ca5e6e58843118cbd9f461a50e947a2c7c536cd62144
MD5 8ddb1f122c305ef04b6814dd9f13c0b4
BLAKE2b-256 fd72b58766d42e2ed0cb2bfba30ae256553023bc59d16549302f764004401f84

See more details on using hashes here.

File details

Details for the file django_facebook_capi-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for django_facebook_capi-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 fd3065be21f2b726f672b22eb48d0d510329db4f36ff82d4d352e01cf13b0592
MD5 40827f9ee9d1e68de39956aec6dce75f
BLAKE2b-256 7fde6f30bf9ddd165614efa822855de50c682671a37498a8ea6ac689cfc197c4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page