problem description
now a scenario is that GET requests a url, without cookie, so the session is passed through query, for example:
https://www.example.com/getxx.
so, after getting the sessionid in the controller, how do I get the logged-in user?
in other words, how Laravel authenticates against sessionid.
$request->session()->setId("zvxBAKjfgABQa0Gf1BepMsjtwONilFEWbhHGA6EG");
you have tried to set the current sessionid, first and then use Auth::user () to get it, which is not available. Is there any way for everyone?