JSPM

fca-maria

16.0.7
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 16
  • Score
    100M100P100Q45514F
  • License MIT

Project oF rX

Package Exports

  • fca-maria
  • fca-maria/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (fca-maria) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

🎀 FCA MARIA

npm version version code style: prettier

Facebook now has an official API for chat bots here.

Fully Refactored & Future-Ready Facebook Chat API – by rX Abdullah

rx-fca is a modern, ultra-stable Facebook Messenger automation client fully rebuilt and optimized by rX Abdullah (2025 Edition).
Designed for bot developers who want speed, control, security, and real-time automation.


👑 Upgraded By

⭐ rX Abdullah

Complete refactor, AI Theme engine, MQTT optimization, performance boost & 2025 upgrades.


✨ Features (2025 Updated)

  • 🔐 Smart Login System
  • 🎨 AI Theme Engine (Exclusive)
  • Real-time Messaging
  • 📝 In-place Message Editing
  • ✍️ Typing Indicator Control
  • 📬 Message Status Management
  • 📂 Thread Management System
  • 👤 User Information Fetch
  • 🎭 Sticker Search + AI Sticker Engine
  • 📢 Public Post Interaction
  • Follow / Unfollow Automation
  • 🌐 Proxy Support
  • 🧱 Modular Command System
  • 🛡️ 2025 Stability Patch + Fail-safe Recovery

🎀 fca-maria

This API is the only way to automate chat functionalities on a user account. We do this by emulating the browser. This means doing the exact same GET/POST requests and tricking Facebook into thinking we're accessing the website normally. Because we're doing it this way, this API won't work with an auth token but requires the credentials of a Facebook account.

Disclaimer: We are not responsible if your account gets banned for spammy activities such as sending lots of messages to people you don't know, sending messages very quickly, sending spammy looking URLs, logging in and out very quickly... Be responsible Facebook.

⚙️ Installation

npm i fca-maria

## Testing your bots
If you want to test your bots without creating another account on Facebook, you can use [Facebook Whitehat Accounts](https://www.facebook.com/whitehat/accounts/).

## Example Usage
```javascript
const login = require("rx-fca");

// Create simple echo bot
login({email: "FB_EMAIL", password: "FB_PASSWORD"}, (err, api) => {
    if(err) return console.error(err);

    api.listen((err, message) => {
        api.sendMessage(message.body, message.threadID);
    });
});

Result:

screen shot 2016-11-04 at 14 36 00

Documentation

You can see it here.

Main Functionality

Sending a message

api.sendMessage(message, threadID[, callback][, messageID])

Various types of message can be sent:

  • Regular: set field body to the desired message as a string.
  • Sticker: set a field sticker to the desired sticker ID.
  • File or image: Set field attachment to a readable stream or an array of readable streams.
  • URL: set a field url to the desired URL.
  • Emoji: set field emoji to the desired emoji as a string and set field emojiSize with size of the emoji (small, medium, large)

Note that a message can only be a regular message (which can be empty) and optionally one of the following: a sticker, an attachment or a url.

Tip: to find your own ID, you can look inside the cookies. The userID is under the name c_user.

Example (Basic Message)

const login = require("maria-fca");

login({email: "FB_EMAIL", password: "FB_PASSWORD"}, (err, api) => {
    if(err) return console.error(err);

    var yourID = "000000000000000";
    var msg = "Hey!";
    api.sendMessage(msg, yourID);
});

Example (File upload)

const login = require("maria-fca");

login({email: "FB_EMAIL", password: "FB_PASSWORD"}, (err, api) => {
    if(err) return console.error(err);

    // Note this example uploads an image called image.jpg
    var yourID = "000000000000000";
    var msg = {
        body: "Hey!",
        attachment: fs.createReadStream(__dirname + '/image.jpg')
    }
    api.sendMessage(msg, yourID);
});

Saving session.

To avoid logging in every time you should save AppState (cookies etc.) to a file, then you can use it without having password in your scripts.

Example

const fs = require("fs");
const login = require("maria-fca");

var credentials = {email: "FB_EMAIL", password: "FB_PASSWORD"};

login(credentials, (err, api) => {
    if(err) return console.error(err);

    fs.writeFileSync('appstate.json', JSON.stringify(api.getAppState()));
});

Alternative: Use c3c-fbstate to get fbstate.json (appstate.json)


Listening to a chat

api.listen(callback)

Listen watches for messages sent in a chat. By default this won't receive events (joining/leaving a chat, title change etc…) but it can be activated with api.setOptions({listenEvents: true}). This will by default ignore messages sent by the current account, you can enable listening to your own messages with api.setOptions({selfListen: true}).

Example

const fs = require("fs");
const login = require("maria-fca");

// Simple echo bot. It will repeat everything that you say.
// Will stop when you say '/stop'
login({appState: JSON.parse(fs.readFileSync('appstate.json', 'utf8'))}, (err, api) => {
    if(err) return console.error(err);

    api.setOptions({listenEvents: true});

    var stopListening = api.listenMqtt((err, event) => {
        if(err) return console.error(err);

        api.markAsRead(event.threadID, (err) => {
            if(err) console.error(err);
        });

        switch(event.type) {
            case "message":
                if(event.body === '/stop') {
                    api.sendMessage("Goodbye…", event.threadID);
                    return stopListening();
                }
                api.sendMessage("TEST BOT: " + event.body, event.threadID);
                break;
            case "event":
                console.log(event);
                break;
        }
    });
});

FAQS

  1. How do I run tests?

    For tests, create a test-config.json file that resembles example-config.json and put it in the test directory. From the root >directory, run npm test.

  2. Why doesn't sendMessage always work when I'm logged in as a page?

    Pages can't start conversations with users directly; this is to prevent pages from spamming users.

  3. What do I do when login doesn't work?

    First check that you can login to Facebook using the website. If login approvals are enabled, you might be logging in incorrectly. For how to handle login approvals, read our docs on login.

  4. How can I avoid logging in every time? Can I log into a previous session?

    We support caching everything relevant for you to bypass login. api.getAppState() returns an object that you can save and pass into login as {appState: mySavedAppState} instead of the credentials object. If this fails, your session has expired.

  5. Do you support sending messages as a page?

    Yes, set the pageID option on login (this doesn't work if you set it using api.setOptions, it affects the login process).

    login(credentials, {pageID: "000000000000000"}, (err, api) => {}
  6. I'm getting some crazy weird syntax error like SyntaxError: Unexpected token [!!!

    Please try to update your version of node.js before submitting an issue of this nature. We like to use new language features.

  7. I don't want all of these logging messages!

    You can use api.setOptions to silence the logging. You get the api object from login (see example above). Do

    api.setOptions({
        logLevel: "silent"
    });

Projects using this API:

  • c3c - A bot that can be customizable using plugins. Support Facebook & Discord.
  • Maria-v3 - A simple Facebook Messenger Bot made by rX.