Skip to content

shakedown-street/jprice-rest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Java-REST-Client

A Java HTTP/REST library created for my own educational purposes.

Using the jar build:

java -jar jprice-rest_build_{version}.jar <method> <url> $<data>

Example GET request with the API

`

Response res = new Request(url) {
	@Override
	public String getContentType() {
		return "application/json";
	}
}.get();

`