2017-09-05 93 views

回答

0

我發現腳本是負責與跟隨者的信息顯示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的用戶名我的網站不能識別它,並說有一個錯誤&輸入一個有效的用戶名。

相關問題