Socket
Socket
Sign inDemoInstall

@hoahenry/meta-api

Package Overview
Dependencies
Maintainers
1
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hoahenry/meta-api

This is an unofficial API for Meta (Facebook - Facebook Messenger)


Version published
Weekly downloads
35
increased by483.33%
Maintainers
1
Weekly downloads
 
Created
Source

Meta API

Menu
  1. Introduction
  2. Install And Use
  3. Documentation
  4. Contact
  5. Donate

Introduction

  • Building...

Install

1. Use npm

  • At command line, enter: npm i @hoahenry/meta-api

2. Update

  • Use built-in function: checkUpdate(allowUpdate)
  • If allowUpdate is true, it will automatically update if a new version is available.

Use

  • You can use function login(loginData, callback).
    • loginData:
      • email: Your email
      • password: Your password
      • cookies: Recommend Your Cookies
      • configs:
        • 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 api
  • Login with Cookies:
var { 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
});
  • Login with your account and password:
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
});
  • Or use both methods:
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);

Docs

  • Building...

Contact

Donate

  • Paypal: xuanhoa.henry@gmail.com
  • Total Income: 0
  • Thank: ...
  • Keywords

    FAQs

    Package last updated on 03 Jun 2024

    Did you know?

    Socket

    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.

    Install

    Related posts

    SocketSocket SOC 2 Logo

    Product

    • Package Alerts
    • Integrations
    • Docs
    • Pricing
    • FAQ
    • Roadmap
    • Changelog

    Packages

    npm

    Stay in touch

    Get open source security insights delivered straight into your inbox.


    • Terms
    • Privacy
    • Security

    Made with ⚡️ by Socket Inc