function hook_openid_response
7.x openid.api.php | hook_openid_response($response, $account) |
Allow modules to act upon a successful OpenID login.
Parameters
$response: Response values from the OpenID Provider.
$account: The Drupal user account that logged in
Related topics
1 invocation of hook_openid_response()
- openid_authentication in drupal-7.x/
modules/ openid/ openid.module - Authenticate a user or attempt registration.
File
- drupal-7.x/
modules/ openid/ openid.api.php, line 42 - Hooks provided by the OpenID module.
Code
function hook_openid_response($response, $account) {
if (isset($response['openid.ns.ax'])) {
_mymodule_store_ax_fields($response, $account);
}
}