我正在使用Laravel 4.2,我需要在对登录请求的响应中发送auth cookie。
到目前为止,我尝试了Cookie::get('laravel_session')
,但这只会返回客户端发回的Cookie。
if (Auth::attempt(array('email' => Input::get('email'), 'password' => Input::get('password')))) {
/* I need the auth token here */
}
想法?
答案 0 :(得分:1)
这将做的事情: Session::getId()
点击此处:How can I get the session ID in Laravel?
这实际上做得很好:
Crypt::encrypt( Session::token() )