Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/denuxplays/jdoauth2

A wrapper for the discord OAuth2 API
https://github.com/denuxplays/jdoauth2

discord oauth2

Last synced: about 2 months ago
JSON representation

A wrapper for the discord OAuth2 API

Awesome Lists containing this project

README

        

[![](https://jitpack.io/v/DenuxPlays/JDOAuth2.svg)](https://jitpack.io/#DenuxPlays/JDOAuth2)
# JDOAuth2 (Java Discord OAuth2)

A wrapper for the Discord OAuth2 API.

## Installation

### Maven

Add the [JitPack](https://jitpack.io/) repository to your `pom.xml`
```xml


jitpack.io
https://jitpack.io

```

Add the dependency
```xml

com.github.DenuxPlays
JDOAuth2
2.0.0-alpha.1

```

### Gradle

Add the [JitPack](https://jitpack.io/) repository to your `build.gradle`
```gradle
repositories {
[...]
maven { url "https://jitpack.io" }
}
```

Add the dependency
```gradle
dependencies {
[...]
implementation("com.github.DenuxPlays:JDOAuth2:2.0.0-alpha.1")
}
```