有没有办法使用InstagramAPI在Instagram帖子和故事上标记某人?

时间:2018-04-26 17:32:14

标签: python-3.x instagram instagram-api

我正在使用InstagramAPI进行Python项目,这需要我添加一个Instagram帖子,一个故事,并使用x和y坐标标记照片上的人物。全部使用代码! 我用这个来上传:

InstagramAPI.uploadPhoto(photo_path, caption=caption)

但无法找到标记帖子中人物的方法!

1 个答案:

答案 0 :(得分:0)

还是没有运气吗?

具有API访问权限,可以在照片中张贴和标记用户。 https://developers.facebook.com/docs/instagram-api/content-publishing/#publish-with-tagged-users

奇怪的是,似乎没有人公开地试用过它。

FB文档示例:

POST graph.facebook.com/17841400008460056/media
  ?image_url=https://www.example.com/images/bronzed-fonzes.jpg
  &caption=#BronzedFonzes!
  &user_tags=
   [
     {
       username:'kevinhart4real',
       x: 0.5,
       y: 0.8
     },
     {
       username:'therock',
       x: 0.3,
       y: 0.2
     }
   ]