python InstagramAPI对我们的最后一个feed发表评论

2024-09-27 02:20:26 发布

您现在位置:Python中文网/ 问答频道 /正文

我需要用instagramapi python自动注释Instagram配置文件的最后一个提要。你知道吗

from InstagramAPI import InstagramAPI

username_x = "XXXX" 
password_x = "XXXX"  
user_id = 'xxxxxxxxxx'
if (api.login()):

    api.getUserFeed(user_id, maxid='', minTimestamp=None)

但是我不知道如何继续,因为api.getUserFeed只返回True,我找不到提要的ID。你知道吗


Tags: fromimportapiidif配置文件usernamepassword

热门问题