Socket
Socket
Sign inDemoInstall

bfd-api-redux

Package Overview
Dependencies
2
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    bfd-api-redux

A node.js wrapper for the Bots For Discord API


Version published
Weekly downloads
10
increased by11.11%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Deprecation notice for <1.2.2

IMPORTANT: bfd-api-redux versions 1.2.2 and below are NO LONGER SUPPORTED for interfacing with the Discords.com Bots API.

NOTICE & INFO

bfd-api-redux is an official bot-page API wrapper for Discords.com (formerly botsfordiscord.com). Please direct all inqueries and support requests to our support server.

The current version of the Discords.com Bot API will be depracated upon the release of the BotsV3 runtime (website rewrite). Please keep in mind that any bots using a custom wrapper for the API will need to migrate, the current version if this package will also be deprecated and an update will be required.

Usage

Constructing a new API interface:

var bfd = require('bfd-api-redux');
var api = new bfd('BFD_Token', 'botID');

NOTE: If you do now wish to use callbacks, then all actions must be used inside async functions with an await, for example:

You can easily update your Bot's guild count using this function:

let serverCount = client.guilds.cache.size; 
api.setServers(serverCount)

Examples

Get votes

api.getVotes().then(votes => {
    console.log(votes)
})

// Or, if running inside an async function:

await api.getVotes()

Cheking a vote for one specific user (including structure)

api.checkVote("254287885585350666").then(vote => { //Provide a user id
    console.log(vote) //true or false + vote structure
})

Cheking a vote for one specific user (lightweight structure)

api.checkVoteLight("254287885585350666").then(vote => { //Provide a user id
    console.log(vote) //true or false
})

Keywords

FAQs

Last updated on 21 Jan 2024

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