Skip to main content
Version: 1.1.0

Java

We made a Java client for our API. You can find it on our GitHub repository.

Installation

Maven

<dependency>
<groupId>fr.classydev</groupId>
<artifactId>nekonya4j</artifactId>
<version>0.1.0</version>
</dependency>

Gradle

implementation 'fr.classydev:nekonya4j:0.1.0'

Example

import fr.classydev.NekoNya4J.NekoNya;

public class Example {
public static void main(String[] args) {
NekoNya client = new NekoNya();
System.out.println(client.getNeko());
// -> URL
}
}

Methods

MethodDescription
getNekoGet a random neko image.
getKitsuneGet a random kitsune image.
getPatGet a random pat image (gif).
getHugGet a random hug image (gif).
getSlapGet a random slap image (gif).
getKissGet a random kiss image (gif).
owoifyOwoify text.
getEightBallGet a random 8ball answer.

get methods

All get methods return a String containing the URL of the image.

There are no parameters for these methods.

owoify

String owoified = client.owoify("Hello, world!");
System.out.println(owoified);
// -> hewwo, wowwd owo

getEightBall

String answer = client.getEightBall();
System.out.println(answer);
// -> Yes

Or with the cute parameter:

String answer = client.getEightBall(true);
System.out.println(answer);
// -> Yes, nyaa~

Exceptions

All methods can throw any HttpClient exceptions (from java's HttpClient).

License

This client is licensed under the apache-2.0 license.