Skip to content

Latest commit

 

History

History
54 lines (36 loc) · 1.31 KB

File metadata and controls

54 lines (36 loc) · 1.31 KB

#jInstagram

A Java wrapper for the Instagram API

##Usage

  • Create the InstagramService object
InstagramService service =	new InstagramAuthService()
    							.apiKey("your_client_id")
    							.apiSecret("your_client_secret")
    							.callback("your_callback_url")     
    							.build();

Note : An empty token can be define as follows -

private static final Token EMPTY_TOKEN = null;
  • Validate your user against Instagram
String authorizationUrl = service.getAuthorizationUrl(EMPTY_TOKEN);
  • Getting the Access Token
Verifier verifier = new Verifier("verifier you get from the user");
Token accessToken = service.getAccessToken(EMPTY_TOKEN, verifier);
  • Creating the Instagram Object
Instagram instagram = new Instagram(accessToken);

##Instagram API Endpoints

Please see the API Usage for more details.

##Dependencies

##About me