ios - 无法在 ios 应用程序中的 google+ 中与图像共享 url
<p><p>我正在开发一个应用程序,我正在尝试通过 google+ 与 URL 共享图像。我也在使用 GPPNativeShareBuilder。但它不共享任何内容并发出以下警告“您不能同时将链接和媒体附加到帖子。”</p>
<p>在谷歌论坛的方法描述中提到的和</p>
<ul>
<li>(id) attachImage: (UIImage *) imageAttachment<br/>
如果存在现有媒体附件,则将其替换。如果 imageAttachment 为 nil,则此方法不执行任何操作并返回 nil。此方法不能与 setURLToShare: 或 setTitle:description:thumbnailURL: 结合调用。 </li>
</ul>
<p>请建议我解决此问题的任何解决方案。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我们不能在帖子中同时添加图片和链接,<br/>
但是我们可以在链接中添加“元”,必须在链接页面的标题中添加“元”,<br/>
并在这个“元”中定义图像。</p>
<p>Google 使用 Open Graph (og) 元作为 Facebook,这是示例元,</p>
<pre><code><meta property="og:site_name" content="Your Site Name" />
<meta property="og:title" content="Title of the Post" />
<meta property="og:description" content="Description for the post" />
<meta property="og:url" content="URL where you want to redirect on web" />
<meta property="og:image" content="Your image URL" />
</code></pre>
<p>这是一些很好的示例站点<br/>
<a href="http://moz.com/blog/meta-data-templates-123" rel="noreferrer noopener nofollow">http://moz.com/blog/meta-data-templates-123</a> <br/>
<a href="http://www.bruceclay.com/blog/how-to-use-social-meta-tags/" rel="noreferrer noopener nofollow">http://www.bruceclay.com/blog/how-to-use-social-meta-tags/</a> </p></p>
<p style="font-size: 20px;">关于ios - 无法在 ios 应用程序中的 google+ 中与图像共享 url,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/20424174/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/20424174/
</a>
</p>
页:
[1]