@Test
public void testBuildAuthUrl() throws Exception {
/*
* Test that no Exception is thrown
*/
InstagramAuthentication auth = new InstagramAuthentication();
String authUrl = auth.setRedirectUri("your_redirect_url")
.setClientSecret("your_app_secrect")
.setClientId("your_client_id")
.setScope("comments+likes")
.getAuthorizationUri();
System.out.println(authUrl);