如何在Java脚本中读取外部站点的Cookie显示到iFrame中 [英] How read cookies of external site displayed into iframe in javascript

查看:27
本文介绍了如何在Java脚本中读取外部站点的Cookie显示到iFrame中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的表单提交的目标是一个IFRAME。之后,响应被加载到我的IFRAME中,我想要读取加载到我的IFRAME中的cookie,特别是外部链接的jessionid cookie。

请帮助我解决此问题。

推荐答案

我认为它可以帮助您

    $ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://www.google.com");
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 6.1; rv:11.0) Gecko/20100101 Firefox/11.0');
curl_setopt($ch, CURLOPT_HEADER ,1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER ,1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION ,1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
$content = curl_exec($ch);

// get cookies
$cookies = array();
preg_match_all('/Set-Cookie:(?<cookie>s{0,}.*)$/im', $content, $cookies);

print_r($cookies['cookie']);

这篇关于如何在Java脚本中读取外部站点的Cookie显示到iFrame中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆