Skip to content

Instantly share code, notes, and snippets.

@ismaelc
Created December 5, 2013 23:52
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save ismaelc/7816299 to your computer and use it in GitHub Desktop.
Unirest-java sample code
import com.mashape.unirest.http.*;
import com.mashape.unirest.http.exceptions.UnirestException;
public class HelloMashape {
public static void main(String[] args) throws UnirestException {
HttpResponse<String> request = Unirest.get("https://yoda.p.mashape.com/yoda?sentence=You%20will%20learn%20how%20to%20speak%20like%20me%20someday.%20%20Oh%20wait.")
.header("X-Mashape-Authorization", "<Insert your Mashape key here>")
.asString();
System.out.println(request.getCode());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment