I've just implemented a oAuth provider for my Grails application, and can sucessfully authenticate my client application (using signpost). The next thing I want to do is persist the access token, so my client doesn't have to accept permission everytime. On the server I use the Spring Security OAuth package.

I guess I have to implement my own OAuthProviderTokenServices but I'm not sure. Is there any out-of-the-box handler that I can use, or what is the way to go?

Thanx!!

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

There is an out of the box provider for OAuth2 (JdbcOAuth2ProviderTokenServices) but it looks like there is not a comparable class for OAuth 1. Your best bet would be to subclass RandomValueProviderTokenServices and implement the three abstract persistence related methods. Take a look at JdbcOAuth2ProviderTokenServices for code to borrow, especially around serializing the Authentication object.

I implemented a custom JPA backed OAuth2ProviderTokenServices in a similar way and it was pretty easy.

link|improve this answer
Ok, I started the implementation and it works. Only deserialising was a problem because the classloader couldn't find groovy class GrailsUser. Make a method so you can pass the groovy classloader. – Michael Bavin Mar 8 '11 at 9:08
It would be greatly appreciated if you could share the code you used to solve this problem. ;-) – Javid Jamae Jul 2 '11 at 5:19
Sure thing: gist.github.com/1060126 – ericacm Jul 2 '11 at 13:12
feedback

Your Answer

 
or
required, but never shown

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