You are here

function services_oauth_services_authentication_info in Services 6.3

Same name and namespace in other branches
  1. 7.3 auth/services_oauth/services_oauth.module \services_oauth_services_authentication_info()

Implementation of hook_services_authentication().

File

auth/services_oauth/services_oauth.module, line 6

Code

function services_oauth_services_authentication_info() {
  return array(
    'file' => 'services_oauth.inc',
    'title' => t('OAuth authentication'),
    'description' => t('An open protocol to allow secure API authorization'),
    'security_settings' => '_services_oauth_security_settings',
    'default_security_settings' => '_services_oauth_default_security_settings',
    'authenticate_call' => '_services_oauth_authenticate_call',
    'controller_settings' => '_services_oauth_controller_settings',
  );
}