2015-02-17 51 views
0

我使用的Laravel 4.2,我需要發送身份驗證cookie的登錄請求的響應。如何使用Laravel在響應正文中發送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 */ 
} 

想法?

回答

相關問題