4
A
回答
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。看回購知道如何
相關問題
- 1. 使USER_ID等於用戶名
- 2. 我如何分享instagram用戶名?
- 3. 鑑於Windows註冊表項,我如何找到它的作用?
- 4. 如何找到Foursquare頁USER_ID?
- 5. 鑑於項目GUID,我如何找到項目的名稱/路徑?
- 6. 鑑於excel單元的名稱,我如何找到它的價值?
- 7. 如何通過user_id找到設計用戶?
- 8. 如何從用戶名中檢索Instagram用戶名?
- 9. Instagram API失敗follow_user(user_id)
- 10. 如何從Instagram用戶名中獲取Instagram電子郵件?
- 11. 查找鑑於命名空間屬性
- 12. 如何鑑於
- 13. 如何鑑於
- 14. 鑑於UserName的字符串,我如何檢查用戶IsInRole?
- 15. 按ID查找Instagram用戶
- 16. 要從instagram用戶名中獲取用戶名,請使用instagram api
- 17. 無法找到組件的ID鑑於
- 18. 鑑於N個容器找到blob
- 19. 鑑於User.deleted_at,如何過濾掉其他模型中的已刪除用戶w(user_id,friend_id)?
- 20. 如何獲得型號名稱鑑於從自我在Django
- 21. 鑑於經度和緯度,如何找到國家
- 22. 我如何獲得instagram帳戶信息
- 23. 鑑於崩潰偏移量,.PDB和源,我如何找到源代碼行?
- 24. 如何保存用戶名和user_ID的多排形式
- 25. 如何通過Django中的user_id獲取用戶名?
- 26. 將另一個表中的值添加到我的結果集中(例如,查找user_id的用戶名)
- 27. 我可以通過Instagram用戶名查看帳戶的照片?
- 28. cakephp而不是user_id我如何在視圖中獲取實例用戶名
- 29. 使用用戶名/密碼登錄Instagram
- 30. 我如何關注&取消關注使用Instagram API的Instagram用戶
給我的名單,我可以得到你的用戶名 – krisrak
你有一個API? – AspiringSoftwareDeveloper
我沒有API,我使用Instagram的API – krisrak