无法在ios应用中的Google +上与图片分享网址

时间:2013-12-06 12:40:39

标签: ios google-plus

我正在开发一个应用,我试图通过谷歌+与网址共享图像。我正在使用GPPNativeShareBuilder。但它没有分享任何内容并发出以下警告:“您无法同时在帖子中附加链接和媒体。”

在Google论坛上的方法说明中提到了相同的

  • (id)attachImage:(UIImage *)imageAttachment
    如果存在现有媒体附件,则将其替换。如果imageAttachment为nil,则此方法不执行任何操作并返回nil。无法结合setURLToShare:或setTitle:description:thumbnailURL:调用此方法。

请建议我解决此问题的任何解决方案。

1 个答案:

答案 0 :(得分:1)

我们不允许在帖子中同时添加图片和链接,
但我们可以添加" meta"在链接中,必须添加" meta"在链接页面的标题中,
并在此" meta"中定义图像。

Google使用Open Graph(og)meta作为Facebook,以下是示例元数

<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" />

以下是Some Sample站点,这是一个很好的例子 http://moz.com/blog/meta-data-templates-123
http://www.bruceclay.com/blog/how-to-use-social-meta-tags/