I am writing a RESTful webservice on grails, using rest spring security api. All good... now I want to login a user on registration, there is a registration action, and up on registration completion, i would like to login that user. I found:
springSecurityService.reauthenticate(username) method
but that only login the user, but doesnt create access token in authentication_token table.
Is there other possible way to login and get the access token for that user?