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
Method | Description |
---|---|
getNeko | Get a random neko image. |
getKitsune | Get a random kitsune image. |
getPat | Get a random pat image (gif). |
getHug | Get a random hug image (gif). |
getSlap | Get a random slap image (gif). |
getKiss | Get a random kiss image (gif). |
owoify | Owoify text. |
getEightBall | Get 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.