Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/denuxplays/jdoauth2
- Owner: DenuxPlays
- License: apache-2.0
- Created: 2022-08-03T22:00:02.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-20T07:05:11.000Z (10 months ago)
- Last Synced: 2024-03-20T08:25:46.979Z (10 months ago)
- Topics: discord, oauth2
- Language: Java
- Homepage:
- Size: 151 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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")
}
```