You are here

services_oauth.module in Services 6.3

Same filename and directory in other branches
  1. 7.3 auth/services_oauth/services_oauth.module

File

auth/services_oauth/services_oauth.module
View source
<?php

/**
 * Implementation of hook_services_authentication().
 */
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',
  );
}

Functions

Namesort descending Description
services_oauth_services_authentication_info Implementation of hook_services_authentication().