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