amir-unofficial
v1.0.8
Published
A Facebook chat API Patched By Amir Advanced Feature With Real Browser Useragent.
Maintainers
Readme
⚡ amir-unofficial ⚡
🔥 Created & Fully Patched by Amir 🔥

🚨 Disclaimer
We are not responsible if your account gets banned due to spammy activities
(sending too many messages, spam URLs, logging in/out too fast).
⚠️ Please use this package responsibly.
⚡ Quick Usage Example
const login = require("amir-unofficial");
login({ appState: [] }, (err, api) => {
if (err) return console.error("Login Error:", err);
api.listenMqtt((err, event) => {
if (err) return console.error("Listen Error:", err);
if (event.type === "message") {
api.sendMessage("Echo: " + event.body, event.threadID);
}
});
});