Google通过网址+1某物


12

是否有办法像通过Twitter或Facebook一样通过URL +1?


例如

使用Twitter,您可以:

http://twitter.com/home?status={url}

使用Facebook,您可以:

http://www.facebook.com/sharer.php?u={url}&t={title}

使用Digg,您可以:

http://digg.com/submit?phase=2&url={url}&title={title}

还有没有以相同方式使用Facebook“赞”的方法?:如果是你能回答我的OT问题webmasters.stackexchange.com/questions/6218/...
马可Demaio

1
可悲的是,谷歌在控制疲劳方面正与苹果竞争。
彼得·泰勒

Answers:


1

这是新的,它刚由Google发布:+1按钮可做更多事情:

从今天开始,我们使Google+用户可以轻松地直接通过+1按钮与自己的圈子共享网页。像往常一样只需+1页面,然后寻找新的“在Google+上共享”选项。

那你怎么做呢?使用+代码段

当您通过+1按钮共享内容...时,我们会自动在共享框中添加链接,图片和说明。我们称这些为“ +代码段”

真正的细节在这里,在Google Webmaster Central博客上:充分利用Google +的改进

现在,+ 1按钮使访问者可以共享指向您在Google+上的信息页的链接。

包含每个+ Snippet属性的示例代码:

<body itemscope itemtype="http://schema.org/Article"> 
<h1 itemprop="name">This is the article name</h1> 
<img itemprop="image" src="thumbnail.jpg" /> 
<p itemprop="description">This is the description of the article.</p> 
</body>

本文建议使用+ snippets所谓的配置工具。有几个输入参数,但最简单的示例是

<!-- Update your html tag to include the itemscope and itemtype attributes -->
<html itemscope itemtype="http://schema.org/Article">
<!-- Add the following three tags inside head -->
<meta itemprop="name" content="Title Of Your +1 Content">
<meta itemprop="description" content="This would be a description of the content your users are +1ing">
<meta itemprop="image" content="images/cool-image.png">

3
有趣,但不完全是我的想法。
psp

1

您可以按照文档通过以下URL 共享内容

https://plus.google.com/share?url={url}

或者

https://plusone.google.com/_/+1/confirm?url={url}&title={title}

这是Google+,相当于您上面发布的Facebook和Twitter方法。不幸的是,这不会+1链接,只会共享它。我不清楚这两个动作之间的确切区别,因为上述内容实际上会加载一个页面,内容为

您公开{@这里为您的名字}

–听起来非常像+1。但是,提交的页面只能经过验证,只能在Google+上共享该链接,而不会将其添加到用户的“ +1”中。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.