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 thus it cannot be used in an email newsletter. I would expect Google to provide a static url fallback, but I cannot find it anywhere.

link|improve this question
host a page with the javascript html and then call this static page.. what say ? .. why wait for google. ? – Gaurav Shah Aug 23 '11 at 7:17
There are not absolutes, check out this thread: stackoverflow.com/questions/6676658/share-link-on-google/… – Helmut Granda Nov 9 '11 at 19:51
pattermeister's answer provides a way to share on google+ using a URL with parameters. It worked for me. – sanukcm Nov 23 '11 at 3:53
feedback

7 Answers

up vote 36 down vote accepted

https://plusone.google.com/_/+1/confirm?hl=en&url=http://www.your-url/

You can actually open the share dialog frame from a link and pass the url to google+ Just replace the url= with the url of the content you want to share.

Once you click in the comment field of the page that opens up, you will see the content you want shared. Write a comment, click share and that's it. I use this in my emails and pass the web version url of the email when the user clicks the +1 button.

link|improve this answer
1  
DING DING DING! We have a winner! That's exactly what i was looking for. Thank you my good man – Dogoku Jan 12 at 12:13
Glad you found this... I looked all over for the answer that I was using... will need to update my code. – Tracker1 Jan 24 at 16:19
1  
It's good. I wonder where the official document is. – Sangdol Jan 27 at 4:06
1  
yeah its nice and also working for me, But i need to add the title with this url, I tried and the query string like "&title-mytext" like that, But it does not affect with the share comments, what i do for this?... can u advice me! – VinothPHP Feb 3 at 7:17
feedback

This one works fine for me :

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

link|improve this answer
more solutions seem to be popping up. Google is finally getting their game straight – Dogoku Feb 13 at 10:54
Thanks for this! – imiric Feb 15 at 18:39
feedback

The share link allows you to do this. It will work in an email, but it's not quite the same as the +1 button.

To use the share link, add a link element to your email that complies with the Google+ Buttons policy. Set the href attribute to https://plus.google.com/share?url={url encoded share target}

For example, linking to https://plus.google.com/share?url=http%3A%2F%2Fexample.com will allow you to share example.com on Google+: Google+ share button (yes, that is a working demo).

Check out the official docs for more info.

If you use this approach please be aware of the fact that it is not a direct replacement for the +1 button. The link shares the target URL on Google+, but it does not actually +1 the target page. Only the +1 button can +1 a page.

link|improve this answer
feedback

I'm using the following.. :)

https://m.google.com/app/plus/x/?v=compose&content=[TEXT]%20[URL]
link|improve this answer
Thank you, that seems to be the closest to what i am looking for. – Dogoku Jan 2 at 14:18
feedback

Maybe this helps. It works (partially) for me. http://www.stateofsearch.com/share-on-google-plus-any-website/

link|improve this answer
feedback

There has got to be a way to do this by hacking the +1 script.

If you are interested in just changing the apperance you should download and modify this to suit your requirements.

Then, add this to your css:

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

to override the Google icons. However, this is probably very unstable and subject to change.

link|improve this answer
feedback

Solution for those who needs custom title, description and image. You should make following changes to target URL:

Step1. add itemscope itemtype="http://schema.org/LocalBusiness" into <html> tag. It will look like <html itemtype="http://schema.org/LocalBusiness">. More itemtypes here

Step2. Place the follwing meta tags into <head>, change content attributes according your needs:

<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. Add the following link to your newsletter or anywhere you want:

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

Tip. To check how google sees your page, you can use this tool http://www.google.com/webmasters/tools/richsnippets. Probably you'll be interested in section Extracted rich snippet data from the page

Good luck, Lauris

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.