Security News
CISA Brings KEV Data to GitHub
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
ryuu-fca-api
Advanced tools
Ryuu-FCA-API is a powerful fork of the Facebook Chat API with significant improvements and new features.
npm install ryuu-fca-api
login({
email: "your_email",
password: "your_password"
}, (err, api) => {
if(err) return console.error(err);
// Bot code here
});
login({
appState: JSON.parse(fs.readFileSync('appstate.json', 'utf8'))
}, (err, api) => {
if(err) return console.error(err);
// Bot code here
});
const login = require("ryuu-fca-api");
login({
email: "YOUR_EMAIL",
password: "YOUR_PASSWORD"
}, (err, api) => {
if(err) return console.error(err);
api.setOptions({
forceLogin: true,
listenEvents: true,
logLevel: "silent",
updatePresence: false,
selfListen: false
});
api.listenMqtt((err, event) => {
if(err) return console.error(err);
switch(event.type) {
case "message":
api.sendMessage("Hello!", event.threadID);
break;
}
});
});
api.setOptions({
forceLogin: true,
listenEvents: true,
logLevel: "silent",
updatePresence: false,
selfListen: false,
userAgent: "user agent here", //optional
autoMarkRead: false,
autoMarkDelivery: true
});
Join our community:
Contact info:
This project is licensed under the MIT License.
Note: While we've restored many features, please use this API responsibly and in accordance with Facebook's terms of service.
FAQs
A Facebook chat API
The npm package ryuu-fca-api receives a total of 122 weekly downloads. As such, ryuu-fca-api popularity was classified as not popular.
We found that ryuu-fca-api demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.