@codertj
Пока учусь в php

Как получить query_hash instagram?

<?php


ob_start();
error_reporting(0);
header('Content-Type: application/json');

function info($id){
    $curl = curl_init();   
    curl_setopt($curl, CURLOPT_URL, 'https://www.instagram.com/graphql/query/?query_hash=b3055c01b4b222b8a47dc12b090e4e64&variables=' . urlencode('{"reel_ids":["' . $id . '"],"tag_names":[],"location_ids":[],"highlight_reel_ids":[],"precomposed_overlay":false,"show_story_viewer_list":true,"story_viewer_fetch_count":50,"story_viewer_cursor":""}'));
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);    
    curl_setopt($curl, CURLOPT_ENCODING, '');
    curl_setopt($curl, CURLOPT_MAXREDIRS, 10);
    curl_setopt($curl, CURLOPT_TIMEOUT, 0);
    curl_setopt($curl, CURLOPT_COOKIEJAR, 'cookie.txt');
    curl_setopt($curl, CURLOPT_COOKIEFILE, 'cookie.txt');
    curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
    curl_setopt($curl, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
    $response = curl_exec($curl);
    curl_close($curl);

    return $response;
}

$res = info($_GET["id"]);

print_r($res);

ответ:

{"message":"Please wait a few minutes before you try again.","require_login":true,"status":"fail"}

Я пытаюсь скачать видео история из cznburak.
  • Вопрос задан
  • 203 просмотра
Пригласить эксперта
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Войти через центр авторизации
Похожие вопросы