我正在创建第三方 cookie<img src="http://example.com/test.php" />
测试.php:
if($_GET['r']) {
header('Content-type: image/gif');
// echo transparent 1x1 pixel
exit;
} else {
setcookie('name', md5(time()), time()+60*60*24*30, '/');
$url = 'http://example.com/test.php?r=1';
header('Location: '.$url);
exit;
}
此代码创建第三方 cookie。有什么方法可以通过 javascript 从与 example.com 不同的域读取创建的 cookie?