Instagram是否有类似Twitter的功能;s Intent或Facebook';s共享功能?

Instagram是否有类似Twitter的功能;s Intent或Facebook';s共享功能?,instagram,hashtag,Instagram,Hashtag,我们有一个网页,目前有两个链接,允许用户使用一些文本预先填充Twitter tweet和Facebook帖子,关键点是hashtags(并提及Twitter) 他们现在要求为Instagram添加类似的内容,但我的搜索词中包含了“intent”,他们正在推特上或安卓上找到如何实现这一点的方法 如果有帮助的话,这就是我们试图复制的Twitter和Facebook版本,但Instagram除外 <div id="shareLinks"> <a href="<%= st

我们有一个网页,目前有两个链接,允许用户使用一些文本预先填充Twitter tweet和Facebook帖子,关键点是hashtags(并提及Twitter)

他们现在要求为Instagram添加类似的内容,但我的搜索词中包含了“intent”,他们正在推特上或安卓上找到如何实现这一点的方法

如果有帮助的话,这就是我们试图复制的Twitter和Facebook版本,但Instagram除外

<div id="shareLinks">
    <a href="<%= string.Format("https://twitter.com/intent/tweet?text={0}",
        Server.UrlEncode("___ (@___) ___! #___")) %>"
        onclick="window.open(this.href, '', 'width=550, height=420');return false;"
        target="_blank" class="button tiny secondary">Tweet the good news!</a>
    <a href="<%= string.Format("http://www.facebook.com/sharer/sharer.php?u={0}&amp;t={1}",
        Server.UrlEncode("http://example.com"), Server.UrlEncode("___ #___")) %>"
        onclick="window.open(this.href, '', 'width=626, height=436');return false;"
        target="_blank" class="button tiny secondary">Post the good news!</a>
</div>

谢谢

Instagram拥有一个充满活力的创意社区,允许用户创建图像并通过Instagram原生应用共享图像的第三方应用程序可以为人们提供更多的创意表达机会。然而,我们得到的反馈是,通过这个共享频道发送的预填充字幕经常感觉垃圾。为了保护我们的社区,让Instagram上的互动保持真实,我们正在从手机共享中删除预填充的字幕

从今天开始,iOS钩子和Android意图将停止接受第三方应用程序传递的字幕。这是一个非破坏性的变化:使用预填充字幕的现有移动应用将继续能够使用此流通过Instagram应用共享媒体,但现在Instagram将忽略字幕文本。要为第三方应用程序共享的照片或视频创建标题,用户必须手动输入标题,与使用Instagram本机应用程序共享内容时的方式相同

我们希望这一变化将继续促进Instagram上高质量、真实的共享

<div id="shareLinks">
    <a href="<%= string.Format("https://twitter.com/intent/tweet?text={0}",
        Server.UrlEncode("___ (@___) ___! #___")) %>"
        onclick="window.open(this.href, '', 'width=550, height=420');return false;"
        target="_blank" class="button tiny secondary">Tweet the good news!</a>
    <a href="<%= string.Format("http://www.facebook.com/sharer/sharer.php?u={0}&amp;t={1}",
        Server.UrlEncode("http://example.com"), Server.UrlEncode("___ #___")) %>"
        onclick="window.open(this.href, '', 'width=626, height=436');return false;"
        target="_blank" class="button tiny secondary">Post the good news!</a>
</div>

就像Facebook所做的那样。然而,这似乎适用于iOS和Android应用程序,而不是网站。鉴于上述情况,我猜我们不能包含预先填写的信息,但我们至少可以添加一个链接来打开Instagram网站或应用程序吗?@JamesSkemp Hmmm你凭什么说这不适用于网站?据我所知,网站是“应用程序”,很像Android和iOS apps.Context,我还没有找到任何可以通过网页链接触发共享的例子。相反,我的搜索发现了如何在本机应用程序中触发这一点。如果你能用HTML更新你的答案,作为我可以放在网页上的一个示例链接,比如Facebook/Twitter功能,那就太棒了!