From e38e82687bdb67eccadd46b2615df2baa4e0b7ce Mon Sep 17 00:00:00 2001 From: cash Date: Fri, 6 Nov 2009 12:34:00 +0000 Subject: removing username/password authorization for REST by default - developers can add their own custom PAM using the plugin hook if they require this git-svn-id: http://code.elgg.org/elgg/trunk@3627 36083f99-b078-4883-b0ff-0f9b5a30f544 --- services/api/rest.php | 3 +++ 1 file changed, 3 insertions(+) (limited to 'services/api') diff --git a/services/api/rest.php b/services/api/rest.php index a569e7e26..46931f8b5 100644 --- a/services/api/rest.php +++ b/services/api/rest.php @@ -29,6 +29,9 @@ if ((isset($CONFIG->disable_api)) && ($CONFIG->disable_api == true)) { // plugins should return true to control what API and user authentication handlers are registered if (trigger_plugin_hook('rest', 'init', null, false) == false) { + // remove normal password pam (does not work by default with REST anyway) + unregister_pam_handler('pam_auth_userpass'); + // check session - this usually means a REST call from a web browser register_pam_handler('pam_auth_session'); // user token can also be used for user authentication -- cgit v1.2.3