我正在使用InstagramAPI进行Python项目,这需要我添加一个Instagram帖子,一个故事,并使用x和y坐标标记照片上的人物。全部使用代码! 我用这个来上传:
InstagramAPI.uploadPhoto(photo_path, caption=caption)
但无法找到标记帖子中人物的方法!
答案 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
}
]