Sagarmichael
Sagarmichael

Reputation: 1624

grails spring security core

I have built a mobile app that logs into my grails app. I want to log out of the session on my mobile app.

I know the url I use to log in is:

  http://localhost:8080/<app name>/j_spring_security_check

but how would i close that session and logout? Any help would be grateful.

Upvotes: 1

Views: 149

Answers (1)

Burt Beckwith
Burt Beckwith

Reputation: 75671

Do a GET for http://localhost:8080/<app name>/j_spring_security_logout

Upvotes: 1

Related Questions