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 playing with the grails spring security facebook plugin which is made easy to connect to application using facebook login. I have some questions on logout and redirection on login.

  1. When I logout from the example app, it says logged out (redirect to j_spring_security_logout). However, when I click login again, it logs back in without popping up the login page. How is the logout supposed to work?

  2. I followed this example and integrated into an existing grails application with spring security, with server side auth. If I do not define grails.serverURL in config.groovy, the redirection doesn't work since the there is a missing "/" before j_sprint_secutity_facebook_check. (http://j_spring_security_facebook_check...). If I add the grails.serverURL, it is adding an additional "/" into other page urls and breaking the code.

share|improve this question

1 Answer

up vote 0 down vote accepted
  1. As you're already granted access, Facebook just redirects back to app (with new access_token).

  2. Try version 0.10.3

share|improve this answer
Excellent. 0.10.3. Solves the problem, Thanks Igor. – Soumya Pothu Jan 5 at 1:05
Excellent. 1) I get it now. 2) 0.10.3. Solves the problem Thanks so much for the wonderful plugin & support - Igor. As per 1) - When we logout from application, we redirect to logout. However, clicking on login, immediately brings us back into application unless we logout explicitly from fb. It is similar to any other social login, so not a problem (tested SO). But is there a way to logout completely from fb if we logout from application? Pardon my naive-ness, is it a general practice to keep login session unless logged out from the provider explicitly? – Soumya Pothu Jan 5 at 1:24
You can try Facebook Javascript SDK, it has 'FB.logout()' function that logs out FB completelly. – Igor Artamonov Jan 5 at 5:45

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.