21277 Posts in 5728 Topics by 2599 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 165 Views |
-
Authorisation for RESTful Webserivce

11 October 2012 at 1:21am Last edited: 11 October 2012 2:00am
Hi Everybody,
on Silverstripe 2.4.x, I'm trying to realize restful Webservice Access on one of the DataObjects of our Web-Project.
First part was pretty easy, just added
static $api_access = array(
'view' => array(
'ID',
'Name',
),
'edit' => array(
'Name',
),
);to the DataObject Code. But of course I want to limit access (at least for PUT requests) to authorized users. The Service shall be accessed via an external Script, so I'm thinking of using Basic Auth, with Username & Password transfered within the header of the request.
How do I get Silverstripe to read / accept this kind of authentication?
Thanks a lot for a bit of insight
Kind Regards
SF
| 165 Views | ||
|
Page:
1
|
Go to Top |

