Giter VIP home page Giter VIP logo

discord-oauth's Introduction

Discord Oauth

Simple library to interact with Discord's OAuth2 API.

For more information about OAuth2, see the official documentation.

Example

Example webserver using express and library can be found on express branch

Installing

npm install discord-auth2

Usage

import { OAuth } from 'discord-auth2';
const Discord = new OAuth({
    clientId: '123456789012345678',
    clientSecret: '123456789012345678',
    token: 'TOKEN'
});

Discord.setScopes(['identify', 'guilds', 'guilds.join', 'connections']);
Discord.setRedirectUri('http://localhost:3000/login/callback');

After authorize the application, you will be redirected to the redirect URI. Using e.g. Express, you can get the code from the query string.

const query = req.query.code;

Then, you can use the code to get the access token.

const token = await Discord.getAccessToken(query).catch(err => {
    console.log(err);
});

To get user information, you can use the access token.

const user = await Discord.getUser(token).catch(err => {
    console.log(err);
});

For user guilds you can getGuilds function

const guilds = await Discord.getGuilds(token).catch(err => {
    console.log(err);
});

For user connections you can getGuilds function

const guilds = await Discord.getUserConnections(token).catch(err => {
    console.log(err);
});

To add user to guild (scope guilds.join) you can use the joinServer with guild_id parametr function for more information check the official documentation

user.joinServer('123456789012345678').catch(err => {
    console.log(err);
});

Contributing

All contributions are welcome.


For any questions, you can contact me on Discord.

discord-oauth's People

Contributors

dependabot[bot] avatar minerpl avatar

Stargazers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.