2

特定のしきい値に達すると、Instagram への接続を開いて、そのタグに一致する最近タグ付けされたすべての写真をプルしようとする、現在実行されている cronjob があります。

問題は、curl を使用してコマンドラインからアプリケーションを「承認」するためにリモート ログインを開始しようとすると、Instagram が一貫して次のような Web ページで応答することです。

このページを読み込めませんでした。ブラウザで Cookie を無効にしている場合、またはプライベート モードで閲覧している場合は、Cookie を有効にするか、プライベート モードをオフにしてから、操作を再試行してください。

これは私のcurlスクリプトです。

    $username = "<myusername>";
    $password = "<mypassword>";
    $useragent = "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.43 Safari/537.31"; // Yes cause that's the way I roll
    $cookie="InstagramCookie.txt";

    $ch  = curl_init();

    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_COOKIEJAR, '/tmp/'.$cookie);
    curl_setopt($ch, CURLOPT_COOKIEFILE, '/tmp/'.$cookie);
    curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.13) Gecko/20101206 Ubuntu/10.10 (maverick) Firefox/3.6.13');
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_HEADER, 1);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);

    $page = curl_exec($ch);

    // try to find the actual login form
    if (!preg_match('/<form method="POST" id="login-form" class="adjacent".*?<\/form>/is', $page, $form)) {
        throw Instagram_Manager('Failed to find log in form!');
    }

    $form = $form[0];

    // find the action of the login form
    if (!preg_match('/action="([^"]+)"/i', $form, $action)) {
        throw Instagram_Manager('Failed to find login form url');
    }

    $URL2 = $action[1]; // this is our new post url
    // find all hidden fields which we need to send with our login, this includes security tokens
    $count = preg_match_all('/<input type="hidden"\s*name="([^"]*)"\s*value="([^"]*)"/i', $form, $hiddenFields);

    $postFields = array();

    // turn the hidden fields into an array
    for ($i = 0; $i < $count; ++$i) {
        $postFields[$hiddenFields[1][$i]] = $hiddenFields[2][$i];
    }

    // add our login values
    $postFields['username'] = $username;
    $postFields['password'] = $password;

    $post = '';

    // convert to string, this won't work as an array, form will not accept multipart/form-data, only application/x-www-form-urlencoded
    foreach($postFields as $key => $value) {
        $post .= $key . '=' . urlencode($value) . '&';
    }

    $post = substr($post, 0, -1);

    // set additional curl options using our previous options
    curl_setopt($ch, CURLOPT_URL, "https://instagram.com/".$url2);
    curl_setopt($ch, CURLOPT_REFERER, $url);
    curl_setopt($ch, CURLOPT_POST, 1);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $post);

    $page = curl_exec($ch);

    file_put_contents("/tmp/page.txt", $page);

あなたが持っている考えは、この時点で役に立ちます。

4

1 に答える 1

1

コードを試してみて、いくつかの基本的なエラーを修正した後、正常に動作しました。

まず、フォルダ「/tmp」が存在し、その中のファイルが書き込み可能で読み取り可能であることを確認します。

変化する

$URL2 = $action[1];

為に

$url2 = $action[1];

(変数を小文字に)

"https://instagram.com/".$url2

為に

$url.$url2

それが役に立てば幸い

于 2013-07-02T05:39:23.020 に答える