Skip to content

Instantly share code, notes, and snippets.

@Rohan-here
Rohan-here / server.js
Created October 8, 2022 14:08 — forked from eladnava/server.js
Get Facebook Ads Lead Notifications in Realtime with Node.js
const axios = require('axios');
const express = require('express');
const bodyParser = require('body-parser');
const app = express();
const port = 3000;
// Enter the Page Access Token from the previous step
const FACEBOOK_PAGE_ACCESS_TOKEN = '_______________________________';