如何使用Laravel在响应正文中发送auth cookie?

时间:2015-02-17 20:18:16

标签: php authentication laravel cookies laravel-4

我正在使用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 */
}

想法?

1 个答案:

答案 0 :(得分:1)

这将做的事情:Session::getId()

点击此处:How can I get the session ID in Laravel?

这实际上做得很好:

Crypt::encrypt( Session::token() )