使用节点模块在Instagram上发布媒体

时间:2017-10-31 17:06:17

标签: instagram instagram-api

我找到了这个模块:https://www.npmjs.com/package/instagram-private-api

我想知道使用api在Instagram上发布是否合法。 因为文档只显示GET方法而不是发布

1 个答案:

答案 0 :(得分:0)

我不知道这是否合法,但这是您的代码(pip install instabot)

from instabot import Bot 
  
name = input("Image name + extensions : ")  

bot = Bot() 
bot.login(username = "user_name",  
          password = "user_password")

 
bot.upload_photo(name, 
#Put the photo in the same directory as this code
                 caption ="YOURCAPTION")