将Google Plus(一个或多个分享)链接添加到电子邮件通讯

我试图find一种方法,在Facebook上分享内容,并在通讯中embedded推特链接,这可以通过以下两个url实现:

https://www.facebook.com/sharer.php?u=[URL]&t=[TEXT] http://twitter.com/intent/tweet?source=sharethiscom&text=[TEXT]&url=[URL] 

Google Plus是否有类似的function?

所有我能find的都是Google+button,不幸的是,它使用JavaScript,因此无法在电子邮件通讯中使用。 我希望谷歌提供一个静态url后备,但我找不到任何地方。

 https://plus.google.com/share?url=http%3A%2F%2Fexample.com 

您可以通过Google+官方分享链接在Google+上分享链接 。 将url参数replace为您要共享的URL编码链接。

这个对我来说很好:

https://plus.google.com/share?url=your-page-url

共享链接可以让你做到这一点。 它会在电子邮件中工作,但与+1button不太一样。

要使用分享链接,请在符合Google+button政策的电子邮件中添加链接元素。 将href属性设置为https://plus.google.com/share?url= {url encoded share target}

例如,链接到https://plus.google.com/share?url=http%3A%2F%2Fexample.com将允许您在Google+上分享example.com:; Google+分享按钮 (是的,这是一个工作演示)。

查看官方文档了解更多信息。

如果您使用这种方法,请注意这不是直接replace+1button的事实。 该链接在Google+上共享目标url,但实际上不会+1目标网页。 只有+1button可以+1页面。

解决scheme为那些需要自定义标题,描述和图像 。 您应该对目标url进行以下更改:

步骤1。itemscope itemtype =“http://schema.org/LocalBusiness”;添加到<html>标记中。 它看起来像<html itemscope itemtype="http://schema.org/LocalBusiness"> 。 更多的项目在这里

第2步。 把下面的元标签放在<head> ,根据你的需要改变内容属性:

 <meta itemprop="name" content="{Custom title goes here}"> <meta itemprop="description" content="{Custom description goes here}"> <meta itemprop="image" content="{http://www.your_url.com/your_image.png}"> 

第三步。 添加以下链接到您的通讯或任何你想要的地方:

 <a href="https://plusone.google.com/_/+1/confirm?hl=en&url=http://www.your_url.com">Share it</a> 

小费。 要查看Google如何查看您的信息页,您可以使用此工具http://www.google.com/webmasters/tools/richsnippets 。 可能您会对该部分提取页面中丰富的摘录数据感兴趣

祝你好运,劳瑞斯

我正在使用以下.. 🙂

 https://m.google.com/app/plus/x/?v=compose&content=[TEXT]%20[URL] 

我个人build议Google Plus互动文章buttonhttps://developers.google.com/+/web/share/interactive在您的应用程序/网站中使用。Google Plus允许根据需要进行许多自定义设置。 我已经在我的应用程序中使用它。 它比Share(分享)button更好。

也许这有帮助。 它适用于我(部分)。 http://www.stateofsearch.com/share-on-google-plus-any-website/

必须通过黑客攻击+1脚本来做到这一点。

如果你有兴趣改变外观,你应该下载并修改,以适应你的要求。

然后,添加到您的CSS:

 .Uu .KF { background: url("your-replacement-image") no-repeat scroll -132px -21px transparent !important; } 

覆盖Google图标。 但是,这可能是非常不稳定的,并且可能会发生变化。