How do I get the customized thumbnail image while placing URL in the Google +

Permalink 1 user found helpful
I am new to this concrete5. I have tried by placing the url in the google+ but while placing the link by default it shows the two thumbnail images but not the my customized image. I placed meta tag also but it didn't worked out

<meta itemprop="image" content="http://dolby.com/concrete/images/pingar-logo.png" />

I tried with the <link> also but its working fine in Linked in, Twitter, Facebook.. etc but not in Google+

<link rel="image_src" href="http://dolby.com/concrete/themes/default/images/pingar-logo.png" type="text/png"/>
Can U please help me out with your valuable solutions and suggestion.

 
Tony replied on at Permalink Reply
Tony
did you try adding the itemtype schema attribute to the root <html> tag?

<html lang="en" xmlns="http://www.w3.org/1999/xhtml"
xmlns:fb="facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/"
itemscope itemtype="http://schema.org/Article" >

you may want to use a different format than Article though:
http://schema.org/docs/schemas.html...
mathewjose replied on at Permalink Reply
Thank you Tony....

I wish to add something in that, you have to place the <script> so that it will debug the site and get the images which you are required.

EXAMPLE----->

<html lang="<?php echo LANGUAGE?>" xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/" itemscope itemtype="http://schema.org/ImageObject" itemprop="http://dolby.com/concrete/images/dolby-logo.pngg">
<head>
<meta itemprop="image" content="http://dolby.com/concrete/images/dolby-logo.png" />
<link rel="image_src" href="http://dolby.com/concrete/images/dolby-logo.png" />

<!----start script that to be added ---->

<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>

<!----end of the script to be added ---->

</head>

It works in my site...