从科尔多瓦应用程序在 Instagram 上分享图像到用户个人资料
Posted
技术标签:
【中文标题】从科尔多瓦应用程序在 Instagram 上分享图像到用户个人资料【英文标题】:Share image on instagram from cordova app to users profile 【发布时间】:2020-06-16 12:09:09 【问题描述】:我必须将图像从我的应用程序分享到 Instagram。是否有任何 api 或插件或自定义代码?
【问题讨论】:
developers.facebook.com/docs/instagram-api/guides/… “Content Publishing API 仅与 Facebook 营销合作伙伴和 Instagram 合作伙伴进行封闭测试。我们目前不接受新申请者。” 【参考方案1】:没有正式的方法可以做到这一点,但存在黑客攻击,图书馆中使用了其中一种黑客攻击 - https://github.com/LevPasha/Instagram-API-python
这是他们实现的照片上传 -
from InstagramAPI import InstagramAPI
InstagramAPI = InstagramAPI("login", "password")
InstagramAPI.login() # login
photo_path = '/path/to/photo.jpg'
caption = "Sample photo"
InstagramAPI.uploadPhoto(photo_path, caption=caption)
您需要确保不要过度使用它,因为它可能会导致您的 Instagram 帐户被暂停。
【讨论】:
以上是关于从科尔多瓦应用程序在 Instagram 上分享图像到用户个人资料的主要内容,如果未能解决你的问题,请参考以下文章
Android:无法使用 Intent 在 Instagram 上分享照片
从设备的 file.uri 为科尔多瓦项目中的画廊图像动态创建低分辨率缩略图