denyszet / Discord-Webhook

Discord Webhook library which create object and execute easy

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Discord-Webhook

Java CI with Maven

Discord Webhook library which create object and execute it.

Usage

Maven Repo

Repository

<repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
</repository>

Dependency

<dependency>
    <groupId>com.github.poyrazinan</groupId>
    <artifactId>Discord-Webhook</artifactId>
    <version>1.0.3</version>
</dependency>

Gradle Repo

Repository

maven { url 'https://jitpack.io' }

Dependency

implementation 'com.github.poyrazinan:Discord-Webhook:1.0.3'

Code Example

  • Creating object and execute
import xyz.geik.webhook.discord.Webhook;

public static class Test {
    public static void main(String[] args) {
        Webhook webhook = new Webhook(
                "dataId", // Not Necessary
                "webhookUrl", // Webhook url which should be taken from discord integrations tab
                "userName", // Webhook username who sends
                "photoUrl", // Webhook profile photo who sends
                "thumbnail", // Thumbnail photo in embed
                "authorName", // gets photo from photoUrl and gets link from webUrl
                "description", // Embed message
                "content", // which is not in embed.
                "footer", // Footer text
                "color", // Possibilities (ORANGE, RED, BLACK, GREEN, YELLOW, CYAN, WHITE and BLUE )
                "webUrl" // Website url
        );
        // Execute webhook
        webhook.execute();
    }
}

Photo of Webhook

About

Discord Webhook library which create object and execute easy

License:GNU General Public License v3.0


Languages

Language:Java 100.0%