是否有任何简单的方法只需使用 Instagram 用户名即可获取 Instagram 个人资料数据(关注者、关注者、帖子、姓名、简介......)

问题描述 投票:0回答:1

请不要推荐我 Facebook 开发者 API,他们需要业务验证

请列出一些使用 instagram 用户名返回 instagram 数据的工具,例如 screapper 和免费 api

  • Facebook 图形 API
  • Instagram 基本显示 API
instagram-api
1个回答
0
投票

有 ensta python 库。

安装

pip install ensta

示例

from ensta import Host

host = Host(username, password)
profile = host.profile("leomessi")

print(profile.full_name)
print(profile.biography)
print(profile.follower_count)
© www.soinside.com 2019 - 2024. All rights reserved.