python 尝试从Instagram抓取数据时出现错误

hkmswyz6  于 2023-02-07  发布在  Python
关注(0)|答案(1)|浏览(158)

我试图使用instagramy python包刮一些Instagram的数据,通过以下教程:https://pypi.org/project/instagramy/
我使用了以下代码行(我在这篇文章中使用了一个假的seision id)

from instagramy import InstagramUser
s_id="55449%3APUiRY9UGd7JMJO%3A2uFFQSOlJinJd3dGKGGsAOvBNzTg"
profile = InstagramUser('google',sessionid=s_id)

但我得到以下错误:

有人能帮我找出导致这个错误的原因吗?
谢谢你。

oknwwptz

oknwwptz1#

看起来instagram已经改变了它的API,并且库不再工作,因此github-issue
也许@thiindolentone他的评论对你有帮助:

from instaloader import Instaloader, Profile

PROFILE = "username"

L = Instaloader()

profile = Profile.from_username(L.context, PROFILE)

print(profile.followers)

用追随者代替追随者
对于配置文件,您需要登录。有关详细信息,请参阅
https://instaloader.github.io/

相关问题