-
Notifications
You must be signed in to change notification settings - Fork 6
Next steps #6
Description
Hi,
I'm trying to use this package in my new project. I'm using laravel 5.3. I have already added simplesamlphp/simplesamlphp in my project. I changed the routes for this ones:
Route::group(['prefix' => Config::get('simplersaml.routePrefix')], function () {
Route::get('getLogin', 'RagingDave\SimplerSaml\Http\Controllers\SamlController@getLogin');
Route::get('getLogout', 'RagingDave\SimplerSaml\Http\Controllers\SamlController@getLogout');
});
Everything for now is good. But now I need to connect to Wso2 using simplesamlphp and saml2. Inside of config/simplersaml I put in:
'sp' => 'saml:SP',
'idp' => (Here i have to put the url of my wso2?)
Also I have doubts about the middleware that you are talking about in readme "The problem here is that if the saml session times out, the laravel session could still be valid. The middleware in this package takes care of this so take a look in `` for an example". Where i can find that middleware? How i can manage the var sessions of laravel?
I hope you can help me, because I'm a little lost!
Thanks a lot for your effort