2017-01-10 53 views
0

使用cookie可以重定向到其他域名嗎?我嘗試followong。使用cookies重定向

def test_redirect 
    response.headers['Cache-Control'] = 'no-cache, no-store, must-revalidate' 
    response.headers['Pragma'] = 'no-cache' 
    response.headers['Expires'] = '0' 

    request.cookies[:foo] = {value: 'Viktor is here!', domain: '.google.com'} 

    redirect_to 'http://google.com/' 
end 

但沒有奏效。我的cookie不出現。

enter image description here

回答

2

您無法爲其他域設置Cookie。允許這會帶來巨大的安全缺陷。