function oauth2_server_services_authentication_info in OAuth2 Server 7
Implements hook_services_authentication().
File
- ./
oauth2_server.module, line 175 - Provides OAuth2 server functionality.
Code
function oauth2_server_services_authentication_info() {
return array(
'file' => 'includes/oauth2_server.services_auth.inc',
'title' => t('OAuth2 authentication'),
'description' => t('An open protocol to allow secure API authorization'),
'security_settings' => 'oauth2_server_services_security_settings',
'default_security_settings' => 'oauth2_server_services_default_security_settings',
'authenticate_call' => 'oauth2_server_services_authenticate_call',
'controller_settings' => 'oauth2_server_services_controller_settings',
);
}