Coder Social home page Coder Social logo

facebook-messenger-scraper's Introduction

Facebook Messenger Scraper

Scrapes Group Chat Images / Messages

Config Details

Get Config Details from /ajax/mercury/delivery_receipts.php AJAX call for group thread on https://www.facebook.com/messages

  • MESSAGE_COUNT - no larger than 17500
  • MESSAGE_START - 2015-9-10 (Year, Month, Day) - North American Format

Instalation

https://www.npmjs.com/package/facebook-messenger-scraper

npm install --save facebook-messenger-scraper

Example

const fs = require("fs");

const Scrape = require("facebook-messenger-scraper");
const Config = require("./config.json");

(() => {

    const outputFile = "./messages.html";

    try {

        let scraper = new Scrape(Config);

        scraper.requestMessages().then((messages) => {

            // Validate before anything
            Scrape.validate(messages);

            // Get stats of Messages
            let stats = Scrape.getStats(messages);

            // Get List of Images
            let images = Scrape.getImages(messages);

            // Get List of Chats
            let chats = Scrape.getChats(messages);

            // Output Images to HTML file
            let html = Scrape.formatImagesHTML(messages, outputFile);
            fs.writeFileSync(outputFile, html);

        }).catch((error) => {
            console.error(error);
        });

    } catch (error) {
        console.error(error);
    }

})();

facebook-messenger-scraper's People

Contributors

jamesmarino avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

facebook-messenger-scraper's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.