Skip to content

Instantly share code, notes, and snippets.

@amit-bhandari
Created April 14, 2019 14:56
Show Gist options
  • Save amit-bhandari/75a78be19db6c15cced611360893e6c5 to your computer and use it in GitHub Desktop.
Save amit-bhandari/75a78be19db6c15cced611360893e6c5 to your computer and use it in GitHub Desktop.
public interface QuoteAPI {
//I insist you put your own key here fellas
@Headers({
"X-Mashape-Key: your_Api_key",
"Content-Type: application/x-www-form-urlencoded",
"Accept: application/json"
})
@GET("/")
Call <Quote> getQuote(@Query("cat") String category,
@Query("count") int count);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment