I am working on login with facebook option in my JSF, Spring project. Here is my code:
private static final String api_key = "xxxxxxxxxxxxxxxx";
private static final String secret = "xxxxxxxxxxxxxxxxxxxxxxxx";
// set this to your servlet URL for the authentication servlet/filter
private static final String redirect_uri = "http://localhost:8080/FaceToPlace/myholiday.xhtml";
/// set this to the list of extended permissions you want
private static final String[] perms = new String[] {"publish_stream", "email"};
public static void getLoginRedirectURL() {
String token = null;
String url = "https://www.facebook.com/dialog/oauth?client_id="+api_key+"&redirect_uri=https://www.facebook.com/connect/login_success.html&response_type=token";
try {
ExternalContext externalContext = FacesContext.getCurrentInstance().getExternalContext();
externalContext.redirect(url);
} catch (Exception e) {
}
}
when I am changing the redirecting url from default facebook success page to any other, I am getting an error from facebook page, telling "An error occurred with "APP_NAME". Please try again later."