function openid_test_endpoint

Menu callback; OpenID Provider Endpoint.

It accepts "associate" requests directly from the Relying Party, and "checkid_setup" requests made by the user's browser based on HTTP redirects (in OpenID 1) or HTML forms (in OpenID 2) generated by the Relying Party.

1 string reference to 'openid_test_endpoint'
openid_test_menu in modules/openid/tests/openid_test.module
Implements hook_menu().

File

modules/openid/tests/openid_test.module, line 222

Code

function openid_test_endpoint() {
    switch ($_REQUEST['openid_mode']) {
        case 'associate':
            _openid_test_endpoint_associate();
            break;
        case 'checkid_setup':
            _openid_test_endpoint_authenticate();
            break;
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.