gpt4 book ai didi

php - 使用 Curl 登录网站,转到链接,再次提交表单并获取输出

转载 作者:搜寻专家 更新时间:2023-10-31 21:14:51 24 4
gpt4 key购买 nike

我正在尝试登录一个网站,然后转到一个链接,然后提交一个表单以获取所需的数据。我想用 cURL 来做。我已经成功登录到该网站。登录将我重定向到个人资料页面。

现在我需要点击一个链接然后提交一个表单!但是当我使用 CURL 执行此操作时, session 无效。我在用于存储创建的 cookie 的 cookie.txt 文件中获取了 JSESSIONID。我看到的所有示例都只是关于登录网站或只是提交注册表单。这只是一个 POST 请求!

如何在成功登录并存储 cookie 后转到另一个链接,然后使用 curl 提交另一个表单?

我正在使用 WAMP 作为我的本地服务器。

<?php
$username="myusername";
$password="mypassword";
$url="http://onlinelic.in/LICEPS/Login/webLogin.do";
$referer = "http://onlinelic.in/epslogin.htm";
$postdata = "portlet_5_6{actionForm.userName}=".$username."&portlet_5_6{actionForm.password}=".$password;
$cookie = "cookie.txt" ;
$ch = curl_init();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, true);
curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:13.0) Gecko/20100101 Firefox/13.0");
curl_setopt($ch,CURLOPT_COOKIESESSION,false);
curl_setopt ($ch, CURLOPT_TIMEOUT, 60);
curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_REFERER, $referer);
curl_setopt ($ch, CURLOPT_COOKIEJAR, $cookie);
curl_setopt ($ch, CURLOPT_POSTFIELDS, $postdata);
curl_setopt ($ch, CURLOPT_POST, 1);
$result = curl_exec ($ch);
logIntoLocator();
curl_close($ch);

function logIntoLocator()
{
$pincode = "731234";
$locatorType = "P";
$url = "http://onlinelic.in/LICEPS/appmanager/Customer/CustomerHome?_nfpb=true&_windowLabel=Cust_Agent_Locator_portlet_25_2&Cust_Agent_Locator_portlet_25_2_actionOverride=%2Fportlets%2Fvisitor%2FAgentLocator%2Flocating";
$referer = "https://customer.onlinelic.in/LICEPS/appmanager/Customer/CustomerHome?_nfpb=true&_windowLabel=CustomerLocatorsPortlet_1&_cuid=RC_t_832059&_pagechange=AgentLocator";
$postData = "Cust_Agent_Locator_portlet_25_2wlw-radio_button_group_key:{actionForm.agentRadioOption}=".$locatorType."&Cust_Agent_Locator_portlet_25_2{actionForm.agentOption}=".$pincode;
$cookie = "cookie.txt" ;
$agentCurl = curl_init();
curl_setopt ($agentCurl, CURLOPT_URL, $referer);
curl_setopt ($agentCurl, CURLOPT_SSL_VERIFYPEER, true);
curl_setopt ($agentCurl, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:13.0) Gecko/20100101 Firefox/13.0");
curl_setopt($agentCurl,CURLOPT_COOKIESESSION,true);
curl_setopt ($agentCurl, CURLOPT_TIMEOUT, 60);
curl_setopt ($agentCurl, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt ($agentCurl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($agentCurl, CURLOPT_REFERER, $referer);
curl_setopt ($agentCurl, CURLOPT_COOKIEJAR, $cookie);
curl_setopt ($agentCurl, CURLOPT_COOKIEFILE, $cookie);
curl_setopt ($agentCurl, CURLOPT_POSTFIELDS, $postData);
curl_setopt ($agentCurl, CURLOPT_POST, 1);
$result = curl_exec ($agentCurl);
echo $result;
}

如果您想尝试一下,用户名是“manashch1”,密码是“nokia1105*”。在那里登录并转到 AgentLocator,您可以在那里输入密码 731234 并获取所需的数据。

最佳答案

您需要将 cookie 附加到 CURL。有两种选择:

  1. 您可以通过读取 cookie 并使用手动附加

    来手动完成这一切
    $ch = curl_init();
    $sCookie = 'JSESSIONID=' . $sessionIDSavedEarlier . '; path=/';
    curl_setopt ( $ch , CURLOPT_COOKIE, sCookie );
    ... rest of POST
  2. 您可以使用“cookie jar”(可能是最简单的)

    $ch = curl_init();
    curl_setopt($ch, CURLOPT_COOKIEJAR, "cookie.txt");
    curl_setopt($ch, CURLOPT_COOKIEFILE, "cookie.txt");
    ... rest of POST

(确保您可以读取/写入名为“cookie.txt”的文件 - 如果您有多个用户使用 hte 脚本,则通过 PHP session 使该文件对每个用户都是唯一的!)

关于php - 使用 Curl 登录网站,转到链接,再次提交表单并获取输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11243676/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com