Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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."

share|improve this question
1  
The redirect_uri has to match your app settings for either “Website with Facebook Login” or “App Domains” … – CBroe Aug 23 '12 at 15:50

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.