Benjamin

Results 4 comments of Benjamin

I found this: `AuthorizeHandler` use `AuthenticateHandler` which only seems to accept "Bearer" headers... Shouldn't it accept at least "Basic Auth" in the `authorize` case ?

Using custom `authenticateHandler` resolve my problem... ``` const options = { authenticateHandler: { handle: (data) => { // Whatever you need to do to authorize / retrieve your user from...

Hi! I've made a little adjustment according to https://www.service-public.fr/particuliers/vosdroits/F2405

Doesn't work... My goal is to pass $arg1 and $arg2 dynamically when I will call this service: ``` $klein->respond('GET', '/', function ($request, $response, $service, $app) { return $app->myfunction('foo',['foo','bar']); }); ```...