Grails Application Server Authentication

How to set up an account, login, etc. in Grails when developing for Google App Engine? I usually use the Acegi plugin, but I read that it doesn't work with Google App Engine.

For reference, I am using the Grails and gorm-jpa application plugins.

+2


source to share


3 answers


Google App Engine allows you to manage users through the Google Accounts Java API . The page provides code examples that you can easily implement with Groovy. Hope it helps.



+1


source


You should have a look at this patch: http://jira.codehaus.org/browse/GRAILSPLUGINS-1233 . I haven't used it yet, but maybe this is what you need.



+1


source


In my opinion, it is important to create custom authentication instead of using the Google Account API to build any viable app that runs on GAE.

So, I created my own solution to solve this problem, which may interest you by looking at the url: http://grailsfuse.vobject.com/ (You will get http 500 error for the first request, wait 30 seconds and refresh)

The invalid part is the self registration page and the "remember me" function. Please contact us (hyperlink located below the above URL page) if you are still interested.

Wish to hear from you soon!

0


source







All Articles