0

私はphpのCurlを使用してページにログインしようとしていました..ログイン後にデータを解析しました..Curlを使用してすべての変数の値を投稿しました..ページにログインできません..pls help..

ここに私のコードがあります:

<?php
$fields_string=array();
$url = '`http://data.bsnl.in/wps/portal/!ut/p/c5/04_SB8K8xLLM9MSSzPy8xBz9CP0os3hnd0cPE3!MfAwMLFzcLAyMnUzPPQAMXAwNfM_1wkA6zeAMcwNFA388jPzdVP1I_yhynOa4G-iH6kU76Bdl55QaOiooAzstUAA!!/dl3/d3/L2dBISEvZ0FBIS9nQSEh/`';

$fields = array(
            "userID"=>"xxxxxxxx",
    "password"=>"xxxxxxx"
        );

//url-ify the data for the POST
foreach($fields as $key=>$value) 
{ 
$fields_string .= $key.'='.$value.'&'; 
}
rtrim($fields_string,'&');

//open connection
$ch = curl_init();

//set the url, number of POST vars, POST data
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_POST,count($fields));
curl_setopt($ch,CURLOPT_POSTFIELDS,$fields);

//execute post
$result = curl_exec($ch);
echo $result;

//close connection
curl_close($ch);
?>
4

1 に答える 1

1

それ以外の

$fields = array(
    "userID"   => "xxxxxxxx",
    "password" => "xxxxxxxx"
);

試す

$fields = array(
    "wps.portlets.userid" => "xxxxxxxx",
    "password"            => "xxxxxxxx"
);
于 2012-06-23T08:55:41.550 に答える