Jakob
Jakob

Reputation: 4854

method specific authentication in Phil Sturgeons php codeigniter rest api

Hi I know that I can set the rest authentication in Phil Sturgeons rest API, but I only want authentication for some methods in the REST API.

I want some of my methods to be accessible for everyone with no authentication at all, and others to only be accessible to administrators/people authenticated users.

In .net I can simply set a [RequiresAuthentication] attribute over methods in a webservice, is there something similar I can do with Rest PHP in CodeIgniter?

Or Controller specific would be fine too.

Upvotes: 2

Views: 2883

Answers (2)

notphilsturgeon
notphilsturgeon

Reputation: 46

"philsturgeon Phil Sturgeon Why do people ask questions about my code on StackOverflow and random forums instead of just asking me?"

Go ask Phil Sturgeon.

Upvotes: 3

Olof Larsson
Olof Larsson

Reputation: 901

Hello Jakob :) What you are trying to do is a bit tricky as Phil Sturgeons rest API Controller only supports setting the authentication method globally. To set it globaly you edit this line in the rest config file:

$config['rest_auth'] = '';

I have an untested theory though: To set this setting per controller make sure the setting in the config file is as above (empty) and add this constructor to the controller you would like to specify authentication method for:

function __construct()
{
    $this->load->config('rest');
    //$this->_prepare_basic_auth(); //Uncomment to use basic
    //$this->_prepare_digest_auth(); //Uncomment to use digest
    parent::Controller();
}

Upvotes: 2

Related Questions