| Path: | doc/README_FOR_APP |
| Last Update: | Sat Sep 19 07:20:06 +0200 2009 |
masquerade is an OpenID server released under the MIT-license.
For updates and further information see the project website.
The source code is available at github - feel free to fork and submit patches :)
* rename the file config/database.yml.example to database.yml
* set the values in database.yml according to your database
* run the migration scripts
rake db:migrate
* rename the file config/app_config.yml.example to app_config.yml
* set the values in app_config.yml according to your environment
rake test
You can test the functionality in your local environment starting two instances: One as your Identity Provider/OpenID Server and another one as Relying Party.
ruby script/server
ruby script/server -p 3001
Open your browser with these urls:
First you have to create an account at the Identity Provider, after that you will be able to use the issued OpenID URL (localhost:3000/YOUR_LOGIN) to send requests from the Relying Party to the server.
Use the options provided by the OpenID verification form to test several aspects of the client-server communication (like requesting simple registration data).
The main functionality is in the server controller, which is the endpoint for incoming OpenID requests. The server controller is supposed to only interact with relying parties a.k.a. consumer websites. It includes the OpenidServerSystem module, which provides some handy methods to access and answer OpenID requests.
Inspiration derived from:
Dennis Blöte: mail@dennisbloete.de