大大 我想问请教下
cookie('refresh_token',$refresh_token,14400);
return response()->json([
'expires_in'=>$token->expires_in,
'access_token'=>$token->access_token,
'refresh_token'=>$token->refresh_token
])->cookie('refresh_token',$token->refresh_token);
两种写cookie的方法,我测试了一下下面一种是写进了响应的 header
中,并且在cookie
中有数据,上面一种为什么存不了呢?