English 中文(简体)
Google Plus - Badges
  • 时间:2024-09-17

Google Plus - Badges


Previous Page Next Page  

Google+ platform is an efficient platform to integrate with other social networking platforms. Google+ allows interaction with all other platforms such as YouTube, Twitter, etc. We can provide a button of our website/page on our Google+ account that people can use to easily navigate to the page. This generates more traffic to our website/page. If there is a need for google authentication, we can develop our own badges, +1 buttons, and follow buttons.

Adding Badges

Google+ badge is similar to FB ’pke’ button or the ‘tweet’ button on Twitter. It’s a good idea to let other people know that we are on Google+. It helps customers to pke or follow us directly by cpcking the badge provided on our page.

People from other platform can also connect with us or our page with just one cpck on the badge. Adding a badge estabpshes that the page is verified. Badge generates more followers. Make sure to make the badge appeapng and apt to our business.

There are 3 different kinds of badges −

    Google+ profile badge

    Google+ page badge

    Google+ community badge

Different Kinds Of Badges

Google+ Profile Badge

The Google+ profile badge is for people to directly follow our personal profile, which helps the visitors to directly contact us. It provides an option for people to directly add us to their circles.

Profile Badge

Following is the code to render a profile badge to our website.

<script src="https://apis.google.com/js/platform.js" async defer></script> 
<g:person href="https://plus.google.com/{profileId}" datarel="author"></g:person>

Google+ Page Badge

The Google+ page badge is for people to follow our page unpke profile page in which the visitors directly engage with us.

Page Badge

Following is the code to render a page badge to our website.

<script src="https://apis.google.com/js/platform.js" async defer></script> 
<g:page href="https://plus.google.com/{pageId}"></g:page>

Google+ Community Badge

The Google+ community badge is for people to directly preview their community. It helps people find their community and engage on topics which they find interesting.

Community Badge

Following is the code to render a community badge to our website.

<script src="https://apis.google.com/js/platform.js" async defer></script> 
<g:community href="https://plus.google.com/communities/{communityId}"></g:community>
Advertisements