0
我想知道如何讓instagrams個人資料信息(頭像和追隨者數量)根據請求顯示。如何獲取Instagram個人資料信息?
你可以看到這裏的行動腳本:http://followers10k.club/
,我需要訪問IG API?
或者它可以與某種報廢?
非常感謝你我提前!
我想知道如何讓instagrams個人資料信息(頭像和追隨者數量)根據請求顯示。如何獲取Instagram個人資料信息?
你可以看到這裏的行動腳本:http://followers10k.club/
,我需要訪問IG API?
或者它可以與某種報廢?
非常感謝你我提前!
我發現腳本是負責與跟隨者的信息顯示IG用戶名:
<?php
$username = $_GET['username'];
$url = "https://www.instagram.com/" . $username;
$data = @file_get_contents($url);
preg_match('/\"followed_by\"\:\s?\{\"count\"\:\s?([0-9]+)/',$data,$followed_by);
preg_match('/\"follows\"\:\s?\{\"count\"\:\s?([0-9]+)/',$data,$following);
preg_match('/\"full_name"\:\s?\"([a-zA-Z ]+)/',$data,$full_name);
preg_match('/\"profile_pic_url"\:\s?\"((http[s]?:\/\/)?([^\/\s]+\/)(.*?)")/',$data,$profile_pic);
if ($data === false) { ?>
我現在的問題是:當有人進入一個真正的Instagram的用戶名我的網站不能識別它,並說有一個錯誤&輸入一個有效的用戶名。