@maicol07 First of all, thank you so much for your work, it's amazing.
I'm faccing some issues with a integration between a existing Laravel 7 application and a fresh version of Flarum.
I'm using version 2.0 of flarum-sso-plugin (laravel side), everything seens to be OK, I can log with my laravel user, call SSO login through a login listener.
apparently everything works without errors, I don't get any messages or errors.
However when accessing the Flarum URL nothing happens the user is not logged in on the forum side.
How do i know that the login worked?
Seeing on access_tokens table the token is there with last_user_agent "Maicol07 Flarum Api Client"
My installation follows this pattern, app.domain.com and Flarum installed on forum.domain.com.
My configuration is bellow
[
'url' => env('FLARUM_URL'), // http://forum.domain.com
'root_domain' => env('FLARUM_ROOT') //domain.com,
'api_key' => env('FLARUM_API_KEY') //40CharsRandomKey,
'password_token' => env('FLARUM_PASSWORD_TOKEN') //40CharsRandomKey,
'verify_ssl' => false //just to avoid this verification
];
What I'm missing, can you help me?