1

POST結果を取得しようとしていますが、サーバーがそれをブロックしています。私はで試しました

  • fsockopen
  • カール
  • file_get_contents

しかし、私は「アクセスが拒否されました」のエロアマッサージと同じ結果をサーバーから得ました。

ブロックサーバーからPOST結果を取得する方法はありますか?

<?php
$post_arr = array ("regno" => "1"); 
    $addr = 'url'; 

    $fp = fsockopen($addr, 80, $errno, $errstr, 30); 
    if (!$fp) { 
        echo "$errstr ($errno)<br />\n"; 
    } else { 

        $req = ''; 
        foreach ($post_arr as $key => $value) { 
            $value = urlencode(stripslashes($value)); 
            $req .= "&" . $key . "=" . $value; 
        } 


        $header = "POST /cgi-bin/webscr HTTP/1.0\r\n"; 
        $header .= "Content-Type: application/x-www-form-urlencoded\r\n"; 
        $header .= "Content-Length: " . strlen($req) . "\r\n\r\n"; 
        fwrite($fp, $header); 
        while (!feof($fp)) { 
            echo fgets($fp, 128); 
        } 
        fclose($fp); 
    }  
?>

そしてまた

<?php
    $postdata = http_build_query( 
        array( 
            'regno' => 1
        ) 
    ); 

    $opts = array('http' => 
        array( 
            'method'  => 'POST', 
            'header'  => 'Content-type: application/x-www-form-urlencoded', 
            'content' => $postdata 
        ) 
    ); 

    $context  = stream_context_create($opts); 

    $result = file_get_contents('url', false, $context); 
    echo $result;
?>

上記の両方の方法で、アクセス拒否の出力が得られます。

4

1 に答える 1

2

HTTP_REFERER 変数を設定してみてください。

'header'  => "Content-type: application/x-www-form-urlencoded\r\nReferer: http://urltopost\r\n",

それでもうまくいかない場合は、さらに多くのヘッダーを模倣してみてください。これは、Chrome 開発者ツールの [ネットワーク] タブを見たときに得たものです。

POST /hse/result.asp HTTP/1.1
Host: urlhost
Connection: keep-alive
Content-Length: 17
Cache-Control: max-age=0
Origin: url
User-Agent: something
Content-Type: application/x-www-form-urlencoded
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: url
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDASRCTADA=FBHLDODAOCBACEKMNFLJIMGO

作業コードを含めるように編集: 2 番目のコード スニペットの $opts 定義をこれに置き換えると、機能します。わたしにはできる。

$opts = array('http' => 
    array( 
        'method'  => 'POST', 
        'header'  => "Content-type: application/x-www-form-urlencoded\r\n"
                    ."Referer: url\r\n",
        'content' => $postdata 
    ) 
); 

完全なコード:

<?php 
$postdata = http_build_query( array( 'regno' => 1 ) ); 
$opts = array('http' => array( 'method' => 'POST', 'header' => "Content-type: application/x-www-form-urlencoded\r\n" ."Referer: urltopost\r\n", 'content' => $postdata ) );
$context = stream_context_create($opts); 
$result = file_get_contents('urltopost', false, $context);
echo $result;
?>
于 2012-05-14T15:22:19.767 に答える