Sign on to a Drupal site by relying on another Drupal site as a dedicated Identity Provider. For the Identity Provider use the OSSO Provider feature.
- Install Drupal
- Download the module's dependencies. See note below to use drush_make.
- Install OSSO Relying module from admin/build/features page.
- Go to admin/settings/openid-sso and add trusted OpenID Provider (the assumption is that the provider has the OSSO Provider feature installed.
The following lines of makefile code will download this module's dependencies:
core = "6.x"
projects[ctools][version] = "1.3" projects[feeds][version] = "1.0-alpha12"
; KeyAuth projects[keyauth][type] = "module" projects[keyauth][download][type] = "git" projects[keyauth][download][url] = "git://github.com/developmentseed/keyauth.git"
; Open ID SSO projects[openid_sso][type] = "module" projects[openid_sso][download][type] = "git" projects[openid_sso][download][url] = "git://github.com/developmentseed/openid_sso.git"