
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
discord-link-api
Advanced tools
An API that will communicate with the DB to link, update and search players by player tags and discord Ids.
const discordlinkapi = require('discord-link-api');
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 }
client
.update('#VQJPJY0L', '581442925611712513')
.then(res => console.log(res))
.catch(err => console.log(err))
//Response: { message: 'Success', statusCode: 200 }
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
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.
Contact me on Discord
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
}
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
FAQs
A module to access Player Links to Discord IDs DB
We found that discord-link-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.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.