2016-07-13 36 views

回答

3

你必須使用這個API的Instagram:

https://api.instagram.com/v1/users/{user-id}/?access_token=ACCESS-TOKEN 

響應會有用戶名,全名,生物,跟隨計數和其他信息。

但是,您必須先通過Instagram批准您的應用程序,然後才能訪問API。

你可以嘗試https://www.picodash.com,它可以讓你搜索ID並獲得用戶的結果,但是這將是一個手動過程,以尋找一個接一個,並得到信息

9

如果不批准Instagram的應用程序,我建議使用這個PHP庫: https://github.com/postaddictme/instagram-php-scraper

$instagram = Instagram::withCredentials('username', 'password', 'path/to/cache/'); 
$account = $instagram->getAccountById('193886659'); 
echo $account->getUsername(); 

或者直接訪問:

https://www.instagram.com/query/?q=ig_user(3){id,username,external_url,full_name,profile_pic_url,biography,followed_by{count},follows{count},media{count},is_private,is_verified} 

更新:此網址不再有效。你需要使用POST。看回購知道如何

相關問題