Socket
Socket
Sign inDemoInstall

discord-link-api

Package Overview
Dependencies
52
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    discord-link-api

A module to access Player Links to Discord IDs DB


Version published
Weekly downloads
2
decreased by-89.47%
Maintainers
1
Install size
5.74 MB
Created
Weekly downloads
 

Readme

Source

An API that will communicate with the DB to link, update and search players by player tags and discord Ids.

First Things First!

const discordlinkapi = require('discord-link-api');

Init

let client = new discordlinkapi({
username: 'YourUsername',
password: 'YourPassword'
})

You can also define the username and password in .env as DLA_API_USERNAME and DLA_API_PASSWORD

You can get your own username and password to access the DB by talking to ReverendMike#6969 in the server: https://discord.gg/Eaja7gJ


client
.link('#VQJPJY0L', '581442925611712513')
.then(res => console.log(res))
.catch(err => console.log(err))

//Response: { message: 'Success', statusCode: 200 }

Update Players

client
.update('#VQJPJY0L', '581442925611712513')
.then(res => console.log(res))
.catch(err => console.log(err))

//Response: { message: 'Success', statusCode: 200 }

Search Player Tags by Discord ID

client
.search('581442925611712513')
.then(res => console.log(res))
.catch(err => console.log(err))

//or

console.log(await client.search('581442925611712513'))

//Response: ['#P8U2J0PV2', '#88QQ99CQQ', '#PYVVYVG8P', '#9GVJ2QRYG', '#YRQPVQQY2', '#2VRVVY0RQ', '#VQJPJY0L']

Returns an array of player tags for the discord ID. Throws error when none is found

Get linked discord ID from a player tag

client
.search('#VQJPJY0L')
.then(res => console.log(res))
.catch(err => console.log(err))

//or

console.log(await client.search('#VQJPJY0L'))

//Response: '581442925611712513'

Returns a string with the discord ID linked to the player tag. Throws error when none is found.

Wanna ask something about the API?

Contact me on Discord

Handling Errors

All errors can be taken with .catch blocks. All the errors are sent as JSON objects with message and statusCode of the error.

{
message: 'Error message',
statusCode: 406
}

How to access this API and use this module?

You can get your own username and password by contacting the owner of the API, ReverendMike#6969 and by contacting us in the server: https://discord.gg/Eaja7gJ

Keywords

FAQs

Last updated on 08 Oct 2020

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