Skip to content

the-codeboy/Jokes4J

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Jokes4J

A Java Wrapper for Sv443's joke api

Download

Please replace VERSION below with the version shown above!

Maven

	<dependency>
	    <groupId>com.github.the-codeboy</groupId>
	    <artifactId>Jokes4J</artifactId>
	    <version>VERSION</version>
	</dependency>
	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>

Gradle

dependencies {
	        implementation 'com.github.the-codeboy:Jokes4J:VERSION'
	}

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

Examples

The simplest way to get a single joke

System.out.println(Jokes4J.getJokeString());

Parameters can be set using JokeRequest

JokeRequest request=new JokeRequest(
                new Category[]{Category.Programming,Category.Pun},//leave empty or null to get any category
                Language.ENGLISH,//if null english will be used
                new Flag[]{Flag.nsfw,Flag.racist},
                JokeType.single,//leave null for any type
                "java",//search string. Will be ignored if null or empty string
                0,
                0,//if these are the same they will be ignored
                10,//how many jokes to retrieve
                true//safe mode
        );
        ApiResponse response=Jokes4J.getInstance().getJokes(request);
        response.getJokes();//all the jokes
        System.out.println(response.getJoke().getJoke());//the first joke in the response

About

A Java Wrapper for Sv443's joke api

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy