在电子邮件通讯中添加 Google + (一个或共享)链接

我正在尝试找到一种方法,将 Google + 的分享/+ 1链接嵌入到新闻通讯中,就像 Facebook 的分享和 Twitter 的 tweet 链接可以嵌入到新闻通讯中一样,这可以通过以下两个网址实现:

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

Google Plus 是否也有类似的功能?

我自己能找到的只有 Google + 按钮,不幸的是它使用了 JavaScript,因此不能在电子邮件通讯中使用。我希望谷歌提供一个静态的网址后备,但我在任何地方都找不到它。

96722 次浏览

共享连结允许你这样做。它将工作在一个电子邮件,但它不完全相同的 + 1按钮。

要使用共享链接,请在电子邮件中添加一个符合 Google + 按钮政策的 link 元素。将 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: < img src = “ https://i.stack.imgur.com/bpSoZ.png”alt = “ Google + 分享按钮”> (是的,这是一个工作演示)。

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

如果你使用这种方法,请注意,它不是一个直接替代 + 1按钮的事实。该链接在 Google + 上共享目标 URL,但实际上并没有 + 1目标页面。只有 + 1按钮可以 + 1一个页面。

一定有办法通过破解 + 1脚本来实现这一点。

如果你只是对改变外观感兴趣,你应该下载和修改 这个,以适应您的要求。

然后,把这个添加到你的 css:

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

然而,这可能是非常不稳定的,而且容易改变。

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

我使用以下方法... :)

https://m.google.com/app/plus/x/?v=compose&content=[TEXT]%20[URL]
https://plus.google.com/share?url=http%3A%2F%2Fexample.com

你可以在 Google + 上与官方的 Google + 分享链接分享这个链接。 用要共享的 URL 编码链接替换 url参数。

这个对我很有用:

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

解决那些需要 自定义标题、描述和图像的人。你应该对目标 URL 做以下更改:

Step1将 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}">

Step3 添加以下链接到您的时事通讯或任何您想要的地方:

<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。您可能会对 < em > 节提取页面中的富代码片段数据感兴趣

祝你好运,劳里斯

我个人建议使用“ Google + 互动邮件”按钮 Https://developers.google.com/+/web/share/interactive 在你的应用程式/网站中使用。在这里,Google Plus 允许根据需求进行许多定制。我已经在我的应用程序中使用了它。它是一个比分享按钮更好的选择。