i'm having a lot of problems trying to implement an Oauth provider... I already read a lot of other questions about on stackoverflow and all doesn't have an answer.

I would like to know if anyone successfully start an Oauth provider using JAVA ? i found a lot of libraries but all of them are really bad commented and i cant work with them. I'm accepting any documentation that explain how an oauth provider should work and/or how implement it.

Situation:I have some data on mysql in my server and i want to authorize rely party to acess over oauth but i'm not sure how to do it

tks for ur time

link|improve this question

79% accept rate
feedback

1 Answer

up vote 1 down vote accepted

I assume you want to secure your server-side services with Oauth? You did not say what kind of server-side technology you are using.

For example for REST-based servers, bot Jersey and Resteasy already have Oauth integrated.

Also, this seem to be a pretty complete servlet+JSP OAuth example: http://oauth.googlecode.com/svn/code/java/example/oauth-provider/

link|improve this answer
humm i'm not sure what do i want... I have some data on mysql in my server and i want to authorize rely party to acess over oauth but i'm not sure how to do it :S – Winter Feb 20 '11 at 18:53
Is your rely party another site (server) or an user? – Peter Knego Feb 20 '11 at 20:05
Rely party is an user – Winter Feb 20 '11 at 20:43
Then OpenID is a better fit then OAuth. – Peter Knego Feb 20 '11 at 20:59
OpenID vs OAuth softwareas.com/… – Peter Knego Feb 20 '11 at 20:59
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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