Lấy dữ liệu từ Instagram

Ngày đăng: 21/08/2020 14:39 Chiều
<?php
$access_token = "Nhập access_token từ Facebook";
$photo_count = 13;
$json_link = "https://graph.instagram.com/me/media?fields=id,children,caption,media_url,permalink,timestamp,username,like_count";
$json_link .= "&access_token={$access_token}&count={$photo_count}";
$json = file_get_contents($json_link);
$obj = json_decode(preg_replace('/("\w+"):(\d+)/', '\\1:"\\2"', $json), true);
foreach ($obj['data'] as $post) {
    $count = isset($post["children"]) ? count($post["children"]["data"]) : 0;
    $caption = $post["caption"];
    $link = $post["permalink"];
    $timestamp = date("d-m-Y H:i A", strtotime($post["timestamp"]));
    $media_url = $post["media_url"];
}
?>

Để lấy được access_token bạn thông qua app facebook. App Facebook gửi yêu cầu đến Instagram. Instagram đăng nhập & chấp nhận cho phép lấy dữ liệu.

Apps and websites Instagram

5/5 - (1 bình chọn)