Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

openid consumer for gwt

Anyone have or know of a java implementation of an openid relying party(consumer) for gwt/gae?
openid4java and joid bring in too much baggage for my needs.

like image 318
antony.trupe Avatar asked Sep 01 '09 23:09

antony.trupe


3 Answers

App Engine recently started supporting openID. See the docs for details. This just happened in release 1.3.4 of the sdk.

like image 29
Peter Recore Avatar answered Nov 04 '22 13:11

Peter Recore


Since version 1.3.4 Google App Engine is supporting authentication via OpenID (in addition to OAuth) out of box.

Have a look at the application registration page. The OpenID is reffered to es "Federated Login" and is currently still marked [Experimental] ... but it's working ... and the API looks almost too simple to be real ;-)

There is a GWT demo application running on http://super-easy.appspot.com

like image 194
Draško Kokić Avatar answered Nov 04 '22 13:11

Draško Kokić


jopenid (hosted on Google code) is very minimalistic in its dependencies (which I like) but it doesn't look to support OpenID 1.1 - which I understand is what you need from your use of the term "consumer" (compare with OpenID 2.0's "relying party").

dyuproject (also from Google code) implements more protocols including OpenID 1.1 but requires some additional dependencies.

like image 1
Guss Avatar answered Nov 04 '22 15:11

Guss