google-plus-one

Share link on Google+

北城余情 提交于 2019-11-30 06:17:17
问题 Is it possible to share/post to Google+ without using the +1 button? e.g. Like a normal tweet button works with a url link: http://twitter.com/share?url=httpetcetcetc 回答1: Yes, you can. https://plus.google.com/share?url=YOUR_URL_HERE Edit: It works only with eff.org. Edit: As of March 2012 it works on all sites. Documentation for this sharing method is available on the Google Developers site. 回答2: New Google share link: http://plus.google.com/share?url=YOUR_URL For secure connection: https:/

Adding a Google Plus (one or share) link to an email newsletter

徘徊边缘 提交于 2019-11-30 06:08:03
问题 I am trying to find a way to embed a share/+1 link for Google+ in a Newsletter, much like the Facebook share and tweeter tweet links can be embedded in a newsletter, which can be achieved with the following two urls: https://www.facebook.com/sharer.php?u=[URL]&t=[TEXT] http://twitter.com/intent/tweet?source=sharethiscom&text=[TEXT]&url=[URL] Is there a similar functionality available for Google Plus? All I could find on my own, is the Google+ button, which unfortunately uses JavaScript and

Google Plus button code warns: “Unsafe JavaScript attempt to access frame” in Chrome

半世苍凉 提交于 2019-11-30 05:36:07
I am trying to add a Google Plus button to my site, and keep getting JavaScript safety warnings, despite the fact that I am using Google's recommended code, on Chrome. I have reproduced the errors with code copied straight from Google Webmaster's recommended code , with no other additions: <html itemscope itemtype="http://schema.org/"> <head> <meta itemprop="name" content="Title"> <meta itemprop="description" content="Description"> </head> <body> <g:plusone annotation="inline"></g:plusone> <script type="text/javascript"> (function() { var po = document.createElement('script'); po.type = 'text

Is there a Google Plus URL debugger like the one for Facebook? [closed]

做~自己de王妃 提交于 2019-11-30 03:06:47
Do you know if there is a tool in Google Plus like the one on Facebook? http://developers.facebook.com/tools/debug Yes, here it is: http://www.google.com/webmasters/tools/richsnippets 来源: https://stackoverflow.com/questions/7985398/is-there-a-google-plus-url-debugger-like-the-one-for-facebook

Google +1 Button not W3C compliant

有些话、适合烂在心里 提交于 2019-11-29 22:42:52
So I've been playing with Google's +1 button trying to get it on my website, but it's not W3C compliant. Here's the code: <!-- Place this tag in your head or just before your close body tag --> <script type="text/javascript" src="http://apis.google.com/js/plusone.js"> {lang: 'en-GB'} </script> <!-- Place this tag where you want the +1 button to render --> <g:plusone size="medium" href="http://www.example.org"></g:plusone> Does anyone know why this happens and how to make this compliant? Thanks EDIT: To get this to pass through the validation, I wrote an article on my website . Quentin Does

Why does Google +1 record my mouse movements? [closed]

与世无争的帅哥 提交于 2019-11-29 18:35:48
This is only on pages with a Google +1 box on my website: It seems to be firing off an event on every mouse move. Anyone know what it is doing? I searched on Google (perhaps I should try Bing for once on this one!) but no one seems to have written about it. Is it recording information about my visitors browsing habits? Is it some sort of CAPTCHA to detect human like behviour? Example URL, press F12 in chrome, go to timeline and press record, then move your mouse around this page (it plus ones this question, don't worry): https://plusone.google.com/u/0/_/+1/button?hl=en-US&jsh=r%3Bgc%2F22224365

Facebook, Twitter, and Google +1 buttons using only HTML (No Javascript)

情到浓时终转凉″ 提交于 2019-11-29 17:07:16
问题 I would like to know if there is a method to create "share" buttons for Facebook, Twitter and Google +1 using only HTML, without any Javascript having to be inserted into the code at any point. For example, you can use the methods described below to create these buttons dynamically; however they all end up loading Javascript dynamically and creating their own code behind the scenes: http://developers.facebook.com/docs/reference/plugins/like/ http://twitter.com/about/resources/buttons http:/

how to get the +1 count in google plus using any API

为君一笑 提交于 2019-11-29 14:55:14
问题 I have tried many things but I'm not able to get a proper API which will return me the +1 count in google plus. I have already tried using :- Getting Counts for Twitter links, Facebook likes and Google +1 with Jquery and AJAX Getting Google+ subscription count with jQuery How do I get the counter of a google plus +1 button? But none of them is giving me the answer. Any thoughts.... Thanks :) 回答1: i just found out a very useful site to solve our problem. :) Thanks to him! http://99webtools.com

What kind of json answer starts with )]}'

Deadly 提交于 2019-11-29 07:20:26
问题 I have noticed that some json queries, particularly in google services, return a peculiar "json" which starts with a closing sequence and then it has just a array structure, specified with square braces. What kind of ajax is this? Is there some library, js or py, parsing it? To put a more concrete example: >>> import json >>> import urllib2 >>> url=urllib2.urlopen("https://plus.google.com/u/0/_/socialgraph/lookup/visible/?o=%5Bnull%2Cnull%2C%22114423404493486623226%22%5D") >>> url.readline()

Google Plus button code warns: “Unsafe JavaScript attempt to access frame” in Chrome

时间秒杀一切 提交于 2019-11-29 04:32:08
问题 I am trying to add a Google Plus button to my site, and keep getting JavaScript safety warnings, despite the fact that I am using Google's recommended code, on Chrome. I have reproduced the errors with code copied straight from Google Webmaster's recommended code, with no other additions: <html itemscope itemtype="http://schema.org/"> <head> <meta itemprop="name" content="Title"> <meta itemprop="description" content="Description"> </head> <body> <g:plusone annotation="inline"></g:plusone>