
Product
Introducing Rust Support in Socket
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.
@hoahenry/meta-api
Advanced tools
This is an unofficial API for Meta (Facebook - Facebook Messenger)
npm
npm i @hoahenry/meta-api
checkUpdate(allowUpdate)
allowUpdate
is true
, it will automatically update if a new version is available.login(loginData, callback)
.
loginData
:
email
: Your emailpassword
: Your passwordcookies
: Recommend
Your Cookiesconfigs
:
selfListen
: Default false
Set this to true if you want your api to receive messages from its own account.selfListenEvents
: Default false
Set this to true if you want your api to receive event from its own account.listenEvents
: Default true
listenTyping
: Default false
return typ
status.updatePresence
: Default false
Will make api.listen
also return presence
.readReceipt
: Default false
autoMarkRead
: Default false
onlineStatus
: Default false
emitReady
: Default true
autoReconnect
: Default true
userAgent
: Default 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36'
callback(error, api)
: Called after login complete, return error or list apivar { login } = require('@hoahenry/meta-api');
var { readFileSync } = require('fs');
var cookies = JSON.parse(readFileSync('path_to_cookies.json'));
login({ cookies: cookies }, async function(error, api) {
if (error) console.log(error);
else console.log(api);
// You can use API here
});
var { login } = require('@hoahenry/meta-api');
login({ email: 'your_email_or_facebook_id', password: 'your_password' }, async function (error, api) {
if (error) console.log(error);
else console.log(api);
// You can use API here
});
var { login } = require('@hoahenry/meta-api');
var { readFileSync } = require('fs');
var cookies = JSON.parse(readFileSync('path_to_cookies.json'));
function loginHandle(error, api) {
if (error) return login({ email: 'your_email_or_facebook_id', password: 'your_password' }, loginHandle);
// You can use API here
}
login({ cookies }, loginHandle);
FAQs
This is an unofficial API for Meta (Facebook - Facebook Messenger)
The npm package @hoahenry/meta-api receives a total of 0 weekly downloads. As such, @hoahenry/meta-api popularity was classified as not popular.
We found that @hoahenry/meta-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.
Product
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
Product
Socket is launching experimental protection for Chrome extensions, scanning for malware and risky permissions to prevent silent supply chain attacks.