Socket
Socket
Sign inDemoInstall

rubik-facebook

Package Overview
Dependencies
10
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    rubik-facebook

Facebook Bot Api kubik for the Rubik application system


Version published
Weekly downloads
8
increased by166.67%
Maintainers
1
Install size
1.84 MB
Created
Weekly downloads
 

Readme

Source

rubik-facebook

Facebook's Bot API kubik for the Rubik

Install

npm

npm i rubik-facebook

yarn

yarn add rubik-facebook

Use

const { App, Kubiks } = require('rubik-main');
const Facebook = require('rubik-facebook');
const path = require('path');

// create rubik app
const app = new App();
// config need for most modules
const config = new Kubiks.Config(path.join(__dirname, './config/'));

const facebook = new Facebook();

app.add([ config, facebook ]);

app.up().
then(() => console.info('App started')).
catch(err => console.error(err));

Config

facebook.js config in configs volume may contain the host and token.

If you do not specify a host, then https://graph.facebook.com/ will be used by default.

If you don't specify a token, you will need to pass it.

...
const response = await app.get('facebook').debugToken();
...
...
const response = await app.get('facebook').me.subscribedApps();
...

You may need the host option if for some reason Facebook host is not available from your server and you want to configure a proxy server.

For example: config/facebook.js

module.exports = {
  host: 'https://my.facebook.proxy.example.com/'
};

Extensions

Facebook kubik doesn't has any extension.

Keywords

FAQs

Last updated on 05 Apr 2023

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc