获取Instagram用户供稿

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

我正在尝试使数据与Instagram上的用户供稿选项卡相关。每当我在Google上“获取用户供稿”或类似内容时,都会向我展示如何获取用户发布的近期照片。

但是,我试图获取Feed标签,或者基本上是我关注的其他人的热门帖子。我尝试使用Lev Pasha的Instagram API模块,但唯一可以找到的相关功能是getPopularFeed(),该功能从“探索”页面获取了帖子。

我知道如何连接到Instagram API,并已使用下面的代码完成了此操作,但尚未设法收集feed选项卡。

from InstagramAPI import InstagramAPI

InstagramAPI = InstagramAPI("myusername", "mypassword")
InstagramAPI.login()
python request xmlhttprequest instagram instagram-api
1个回答
0
投票

您可以使用instapi模块来解决您的问题。 Link to repo

代码示例:

from instapi import bind, User


bind('myusername', 'mypassword')

user = User.from_username('some username')

for feed in user.iter_feeds():
    # do something with feed

使用instapi安装pip

pip install git+https://github.com/uriyyo/instapi
© www.soinside.com 2019 - 2024. All rights reserved.