Web Development
open_id.txt
Associated article: OpenID Single Sign-On
Tags: Web Development Security
Published source code accompanying the article by Jeremy Weiskotten in which he examines OpenID -- an open standard that defines a way that web-based applications can authenticate users via a single identity. Also see OPEN_ID.ZIP.
OpenID Single Sign-On by Jeremy Weiskotten Example 1: Creating and destroying sessions def create open_id_authentication end def destroy reset_session self.current_user = nil flash.now[:notice] = 'You have logged out.' render :action => 'new' end Example 2: OpenID ...


