<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;DkMAQX87eSp7ImA9WhVUF0w.&quot;"><id>tag:blogger.com,1999:blog-6884131687395025558</id><updated>2012-05-22T12:20:40.101-07:00</updated><title>Google+ Developers Blog</title><subtitle type="html" /><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://googleplusplatform.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://googleplusplatform.blogspot.com/" /><author><name>ewood</name><uri>http://www.blogger.com/profile/12341551220176883769</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>17</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/GppBxyz" /><feedburner:info uri="gppbxyz" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry gd:etag="W/&quot;DkMAQXwzfyp7ImA9WhVUF0w.&quot;"><id>tag:blogger.com,1999:blog-6884131687395025558.post-1348534561751245901</id><published>2012-05-22T12:04:00.000-07:00</published><updated>2012-05-22T12:20:40.287-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-05-22T12:20:40.287-07:00</app:edited><title>Sharing Rich Content From Your Android Apps, to Google+ and Beyond</title><content type="html">Many developers have been using Android's &lt;a href="http://developer.android.com/reference/android/content/Intent.html#ACTION_SEND" target="_blank"&gt;share intent&lt;/a&gt; to help their users share content with others, directly from their apps. With the recently-launched &lt;a href="http://developer.android.com/reference/android/support/v4/app/ShareCompat.html" target="_blank"&gt;ShareCompat library&lt;/a&gt;, you can now help your users share rich content with their friends (like images and videos) more easily, and the items they share include attribution to your app. All you need to do is add a few lines of code! 
&lt;br /&gt;
&lt;br /&gt;
I'll walk through a few examples that use Google+ as the application handler, but of course, these share intent improvements can work for any service. Popular apps like &lt;a href="https://play.google.com/store/apps/details?id=com.foodspotting" target="_blank"&gt;Foodspotting&lt;/a&gt;, &lt;a href="https://play.google.com/store/apps/details?id=com.alphonso.pulse" target="_blank"&gt;Pulse News&lt;/a&gt;, and &lt;a href="https://play.google.com/store/apps/details?id=com.shazam.android" target="_blank"&gt;Shazam&lt;/a&gt; are already using ShareCompat to help users share rich content with their Google+ circles. You can check out &lt;a href="https://plus.google.com/photos/110967630299632321627/albums/5744690248835524145" target="_blank"&gt;this photo album&lt;/a&gt; to see how they are all taking advantage of the new library.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Creating the Share Intent&lt;/b&gt;
&lt;br /&gt;
&lt;br /&gt;
If you'd like users to be able to share text from your app, start by building the following intent:&lt;br /&gt;
&lt;pre&gt;Intent shareIntent = ShareCompat.IntentBuilder.from(ShareActivity.this)
   .setText("This site has lots of great information about Android!
      http://www.android.com")
   .setType("text/plain")
   .getIntent()
   .setPackage("com.google.android.apps.plus");

startActivity(shareIntent);
&lt;/pre&gt;
Here, I passed text and a URL to the &lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;b&gt;setText&lt;/b&gt;&lt;/span&gt; method, and I used the &lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;b&gt;setType&lt;/b&gt;&lt;/span&gt; method to identify the content as "text/plain." The intent builder can then pass this information to the application that's doing the sharing.  Additionally, I used the &lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;b&gt;setPackage&lt;/b&gt;&lt;/span&gt; method to specify the application that I want to handle it. In this case, the Google+ application is specified.&lt;br /&gt;
&lt;br /&gt;
&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/-5hwbdQ46VCc/T7q1GuUrm3I/AAAAAAAAAU0/Xco9q_9jK3w/s1600/share+intent.png" style="margin-left: auto; margin-right: auto;"&gt;&lt;img height="320" src="http://3.bp.blogspot.com/-5hwbdQ46VCc/T7q1GuUrm3I/AAAAAAAAAU0/Xco9q_9jK3w/s320/share+intent.png" style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none;" width="180" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;&lt;i&gt;The Google+ share box with pre-populated text and link snippet.&lt;/i&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;br /&gt;
&lt;b&gt;Sharing Pictures and Video&amp;nbsp;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
Modifying an intent to share pictures or video takes just two modifications:&lt;br /&gt;
&lt;pre&gt;Intent shareIntent = ShareCompat.IntentBuilder.from(ShareActivity.this)
   .setText("Hello from Google+ Developer Relations!")
   .setStream(MEDIA_URI)
   .setType(MEDIA_TYPE)
   .getIntent()
   .setPackage("com.google.android.apps.plus");
&lt;/pre&gt;
Here, I changed the type to an appropriate content type for the media being shared (“image/png” for images, “video/mp4” for videos, etc...). Additionally, I told the intent builder that I’m sending the media store URI of the picture that I want to share.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;A Rich, Personalized Post&lt;/b&gt;
&lt;br /&gt;
&lt;br /&gt;
Once users shares text, links, images, or video using share intents, the post on Google+ will include attribution to your application, like shown below.
&lt;br /&gt;
&lt;br /&gt;
&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-EAJ8kKkIjvI/T7q3w9BE11I/AAAAAAAAAVE/W7UiUTb_5Wc/s1600/mobile%2Bshare.png" imageanchor="1" style="margin-left: auto; margin-right: auto;"&gt;&lt;img border="0" height="320" src="http://4.bp.blogspot.com/-EAJ8kKkIjvI/T7q3w9BE11I/AAAAAAAAAVE/W7UiUTb_5Wc/s320/mobile%2Bshare.png" width="180" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;&lt;i&gt;A Google+ post with text and an image shared from the &lt;b&gt;Google+ Share Intent Demo&lt;/b&gt; app.&lt;/i&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;br /&gt;
As you can see in the screenshot, I combined sharing an image with sharing text. You can mix and match setting text with sharing pictures, videos, or links.
&lt;br /&gt;
&lt;br /&gt;
If you'd like to add similar functionality to your Android app, just check out the &lt;a href="http://developer.android.com/reference/android/support/v4/app/ShareCompat.html" target="_blank"&gt;ShareCompat documentation&lt;/a&gt;.  Happy sharing!
&lt;br /&gt;
&lt;br /&gt;
Follow the conversation on &lt;a href="https://plus.google.com/u/1/b/110967630299632321627/110967630299632321627/posts/U4e1UXdoGZB" target="_blank"&gt;Google+&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Posted by &lt;a href="https://plus.google.com/u/0/112612962093061557999" target="_blank"&gt;Julia Ferraioli&lt;/a&gt;, Developer Advocate, Google+&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6884131687395025558-1348534561751245901?l=googleplusplatform.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/GppBxyz/~4/bVnWVA8hAcc" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/1348534561751245901?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/1348534561751245901?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/GppBxyz/~3/bVnWVA8hAcc/sharing-rich-content-from-your-android.html" title="Sharing Rich Content From Your Android Apps, to Google+ and Beyond" /><author><name>Amy</name><uri>http://www.blogger.com/profile/12377319141980641278</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-5hwbdQ46VCc/T7q1GuUrm3I/AAAAAAAAAU0/Xco9q_9jK3w/s72-c/share+intent.png" height="72" width="72" /><feedburner:origLink>http://googleplusplatform.blogspot.com/2012/05/sharing-rich-content-from-your-android.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0IBSH4zfCp7ImA9WhVUEko.&quot;"><id>tag:blogger.com,1999:blog-6884131687395025558.post-5574007739469314393</id><published>2012-05-17T10:25:00.003-07:00</published><updated>2012-05-17T10:25:59.084-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-05-17T10:25:59.084-07:00</app:edited><title>Hangouts Hackathon: 1 API, 5 developers, 2 weeks</title><content type="html">Last week we &lt;a href="https://plus.google.com/u/1/110967630299632321627/posts/24KrgPTxgnj" target="_blank"&gt;released an update&lt;/a&gt; to the &lt;a href="https://developers.google.com/+/hangouts/" target="_blank"&gt;Google+ Hangouts API&lt;/a&gt;, which includes several new features and possibilities to build on, like the ability to respond to facial movements in real-time inside an app.&lt;br /&gt;
&lt;br /&gt;
As with any new API, we’re especially interested in what sorts of things our developer friends will dream up, so we've commissioned a handful of them to play with it over the next couple of weeks, and to share their thoughts and discoveries along the way. The participants represent a wide range of developers -- from agencies like &lt;a href="http://barbariangroup.com/" target="_blank"&gt;The Barbarian Group&lt;/a&gt; to independent developers like Eyebeam alum &lt;a href="http://aaron-meyers.com/" target="_blank"&gt;Aaron Meyers&lt;/a&gt; teamed up with &lt;a href="http://okfoc.us/" target="_blank"&gt;OKFocus&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Follow the Hangouts Hackathon with us on the &lt;a href="https://plus.google.com/111395306401981598462" target="_blank"&gt;Google+ Developers page&lt;/a&gt;, and, if you’re working on an interesting Hangouts API project we’d love to hear about that too. Use hashtag #hangoutshackathon to chat about our work, or your own, with the new API.&lt;br /&gt;
&lt;br /&gt;
&lt;span class="post-author"&gt;Posted by &lt;a href="https://plus.google.com/108249232416813189685" target="_blank"&gt;Jonathan Beri&lt;/a&gt;, Google+ Developer Advocate&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6884131687395025558-5574007739469314393?l=googleplusplatform.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/GppBxyz/~4/cwb95luR8cQ" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/5574007739469314393?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/5574007739469314393?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/GppBxyz/~3/cwb95luR8cQ/hangouts-hackathon-1-api-5-developers-2.html" title="Hangouts Hackathon: 1 API, 5 developers, 2 weeks" /><author><name>Amy</name><uri>http://www.blogger.com/profile/12377319141980641278</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><feedburner:origLink>http://googleplusplatform.blogspot.com/2012/05/hangouts-hackathon-1-api-5-developers-2.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CU8CQX4_fCp7ImA9WhVWE00.&quot;"><id>tag:blogger.com,1999:blog-6884131687395025558.post-2204943055121627326</id><published>2012-04-24T14:18:00.000-07:00</published><updated>2012-04-24T14:44:20.044-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-04-24T14:44:20.044-07:00</app:edited><title>Introducing the Google+ Share Button</title><content type="html">When your visitors come across something interesting on your site, sometimes you want to encourage a simple endorsement (like +1). Other times, however, you want to help visitors share with their friends, right away. Today’s new &lt;a href="https://developers.google.com/+/plugins/share/?utm_source=blog&amp;amp;utm_medium=gplusdevelopers&amp;amp;utm_campaign=shareplugin"&gt;Google+ Share button&lt;/a&gt; lets you do just that.
&lt;br /&gt;
&lt;br /&gt;
In line with the design of the &lt;a href="http://googleplusplatform.blogspot.com/2012/03/new-look-for-1-button.html"&gt;new +1 button&lt;/a&gt;, here’s how it looks:
&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;Before visitors share&lt;/i&gt;:
&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://3.bp.blogspot.com/-RNceA4w9iRs/T3ySzqERnmI/AAAAAAAAAQw/TU7mSMEfNTA/s1600/Screen+shot+2012-04-03+at+3.26.03+PM.png"&gt;&lt;img height="28" src="http://3.bp.blogspot.com/-RNceA4w9iRs/T3ySzqERnmI/AAAAAAAAAQw/TU7mSMEfNTA/s400/Screen+shot+2012-04-03+at+3.26.03+PM.png" style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none;" width="400" /&gt;&lt;/a&gt;
&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;When clicked, visitors can add a comment and choose who to share with:&lt;/i&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://1.bp.blogspot.com/-iqMhE_MayC4/T3yQ6wcuFSI/AAAAAAAAAQQ/3g2tzavgZTI/s1600/Screen+shot+2012-04-03+at+3.28.00+PM.png"&gt;&lt;img height="295" src="http://1.bp.blogspot.com/-iqMhE_MayC4/T3yQ6wcuFSI/AAAAAAAAAQQ/3g2tzavgZTI/s400/Screen+shot+2012-04-03+at+3.28.00+PM.png" style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none;" width="400" /&gt;&lt;/a&gt;
&lt;br /&gt;
&lt;i&gt;After they’ve shared, the button turns red. They can click to share again.&lt;/i&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://3.bp.blogspot.com/-e6Hk2lzpVeE/T3yQtPQ6CgI/AAAAAAAAAQI/SBvZw2IIBdo/s1600/Screen+shot+2012-04-03+at+3.28.30+PM.png" imageanchor="1"&gt;&lt;img height="28" src="http://3.bp.blogspot.com/-e6Hk2lzpVeE/T3yQtPQ6CgI/AAAAAAAAAQI/SBvZw2IIBdo/s400/Screen+shot+2012-04-03+at+3.28.30+PM.png" style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none;" width="400" /&gt;&lt;/a&gt;
&lt;br /&gt;
&lt;br /&gt;
The new Google+ Share button is available to all publishers, globally. Try adding it to your site now - just visit Google Developers to &lt;a href="https://developers.google.com/+/plugins/share/?utm_source=blog&amp;amp;utm_medium=gplusdevelopers&amp;amp;utm_campaign=shareplugin"&gt;get the code&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Follow the conversation on &lt;a href="https://plus.google.com/110967630299632321627/posts/aSe9HfpWMdM"&gt;Google+&lt;/a&gt;.&lt;br /&gt;
&lt;span class="post-author"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="post-author"&gt;Posted by &lt;a href="https://plus.google.com/109153173014618846782"&gt;Rick Borovoy&lt;/a&gt;, Product Manager, Google+&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6884131687395025558-2204943055121627326?l=googleplusplatform.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/GppBxyz/~4/8nhNjw3FAYU" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/2204943055121627326?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/2204943055121627326?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/GppBxyz/~3/8nhNjw3FAYU/introducing-google-share-button.html" title="Introducing the Google+ Share Button" /><author><name>Amy</name><uri>http://www.blogger.com/profile/12377319141980641278</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-RNceA4w9iRs/T3ySzqERnmI/AAAAAAAAAQw/TU7mSMEfNTA/s72-c/Screen+shot+2012-04-03+at+3.26.03+PM.png" height="72" width="72" /><feedburner:origLink>http://googleplusplatform.blogspot.com/2012/04/introducing-google-share-button.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0IFR3s7fCp7ImA9WhVRGUg.&quot;"><id>tag:blogger.com,1999:blog-6884131687395025558.post-1181555012888856417</id><published>2012-03-28T09:36:00.000-07:00</published><updated>2012-03-28T10:25:16.504-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-03-28T10:25:16.504-07:00</app:edited><title>Moving the Google+ Hangouts API Out of Preview</title><content type="html">One of the most important ways we connect with others is in person. That's why we're so excited about Google+ Hangouts, and why we &lt;a href="http://googleplusplatform.blogspot.com/2011/09/introducing-google-hangouts-api.html" target="_blank"&gt;launched a preview&lt;/a&gt; of the Hangouts API a few months ago. Today we're moving this API out of preview, and enabling developers to launch and share their hangout apps with the entire Google+ community!&lt;br /&gt;
&lt;br /&gt;
Hangout apps are regular web apps, running in a big window inside the Hangout UI. In addition to using shared-state APIs to give users real-time interactivity, you also have access to built-in Hangout features, such as:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Initiate a group video chat with up to 10 people&amp;nbsp;&lt;/li&gt;
&lt;li&gt;Control hangout microphones, cameras, speakers and volume levels&amp;nbsp;&lt;/li&gt;
&lt;li&gt;Add sound effects and attach image overlays to faces&amp;nbsp;&lt;/li&gt;
&lt;li&gt;Set UI elements such as the video feed, chat pane, and notifications&lt;/li&gt;
&lt;/ul&gt;
It’s easy to get started:&amp;nbsp;read the &lt;a href="https://developers.google.com/+/hangouts/getting-started" target="_blank"&gt;documentation&lt;/a&gt;, &lt;a href="https://developers.google.com/+/hangouts/api-console" target="_blank"&gt;build and publish&lt;/a&gt; your app, and then let users know. You can easily get the word out in one of two ways: 1) post a link to it on Google+, and/or 2) add the new &lt;a href="https://developers.google.com/+/hangouts/button" target="_blank"&gt;hangout button&lt;/a&gt; to your website. In either case, anyone who clicks will start a new hangout with your app running inside. It then appears in the “Recent” apps pane for future hangouts.&lt;br /&gt;
&lt;br /&gt;
To get the ball rolling, we're introducing a new "Apps" pane in Google+ Hangouts, as well as some featured applications, including &lt;a href="http://aceshangout.com/" target="_blank"&gt;Aces Hangout&lt;/a&gt;,&amp;nbsp;&lt;a href="http://launch-hangouts.cacoo.com/" target="_blank"&gt;Cacoo&lt;/a&gt;, &lt;a href="http://scootdoodle.com/hangouts" target="_blank"&gt;Scoot &amp;amp; Doodle&lt;/a&gt;, &lt;a href="http://www.slideshare.net/hangouts" target="_blank"&gt;Slideshare&lt;/a&gt;,&amp;nbsp;&lt;a href="http://www.bravotv.com/watch-what-happens-live/clubhouse-challenge"&gt;Clubhouse Challenge&lt;/a&gt;&amp;nbsp;by Bravo,&amp;nbsp;and Google Effects. We’re looking forward to seeing what you can dream up in the weeks and months ahead.&lt;br /&gt;
&lt;br /&gt;
Follow the conversation on &lt;a href="https://plus.google.com/u/1/116916940622399669871/posts/FVtMdQxrhTF"&gt;Google+&lt;/a&gt;, and happy building!&lt;br /&gt;
&lt;span class="post-author"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="post-author"&gt;Posted by &lt;a href="https://plus.google.com/u/1/116916940622399669871" target="_blank"&gt;Amit Fulay&lt;/a&gt;, Product Manager, Google+ Hangouts&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6884131687395025558-1181555012888856417?l=googleplusplatform.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/GppBxyz/~4/9uXiZfFBhvI" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/1181555012888856417?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/1181555012888856417?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/GppBxyz/~3/9uXiZfFBhvI/moving-google-hangouts-api-out-of.html" title="Moving the Google+ Hangouts API Out of Preview" /><author><name>Amy</name><uri>http://www.blogger.com/profile/12377319141980641278</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><feedburner:origLink>http://googleplusplatform.blogspot.com/2012/03/moving-google-hangouts-api-out-of.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A08CRHo9fSp7ImA9WhVSF0k.&quot;"><id>tag:blogger.com,1999:blog-6884131687395025558.post-3077146136238968645</id><published>2012-03-07T10:06:00.001-08:00</published><updated>2012-03-14T11:31:05.465-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-03-14T11:31:05.465-07:00</app:edited><title>A New Look for the +1 Button</title><content type="html">&lt;b&gt;UPDATE (3/14/12):&lt;/b&gt; Today, we released the new +1 button from preview and it’s now rolling out to all users. You may also notice the numbers in your +1 buttons increase, as we update our plugins to better reflect social activity around your content. Our &lt;a href="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;amp;answer=2521499&amp;amp;topic=1634166&amp;amp;ctx=topic" target="_blank"&gt;Webmaster Tools Help Center article&lt;/a&gt; has more details on this update. &amp;nbsp;Join the conversation on &lt;a href="https://plus.google.com/u/1/b/110967630299632321627/110967630299632321627/posts/b7ttrPT4nbU" target="_blank"&gt;Google+&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Following in the footsteps of our new red and white &lt;a href="https://developers.google.com/+/plugins/badge/?utm_source=blog&amp;amp;utm_medium=gplusplatform&amp;amp;utm_campaign=new1pixels#static" target="_blank"&gt;Google+ icon&lt;/a&gt;, the +1 button is sporting a fresh coat of paint. Starting today, this update will be visible first to our &lt;a href="http://www.google.com/+/learnmore/platform-preview/?utm_source=blog&amp;amp;utm_medium=gplusplatform&amp;amp;utm_campaign=new1pixels" target="_blank"&gt;Google+ Platform Preview Group&lt;/a&gt; and shortly thereafter we’ll roll it out to the public.&lt;br /&gt;
&lt;br /&gt;
Check out the new pixels:&lt;br /&gt;
&lt;br /&gt;
&lt;img src="http://4.bp.blogspot.com/-ct8BIIqoL1s/T1egz5AVbcI/AAAAAAAAALM/iG2r_UICKe8/s1600/web-standard-rest+(1).png" style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none;" /&gt;&lt;br /&gt;
&lt;i style="text-align: left;"&gt;&lt;span style="color: #999999;"&gt;Before you’ve +1’d&amp;nbsp;&lt;/span&gt;&lt;/i&gt;&lt;br /&gt;
&lt;i style="text-align: left;"&gt;&lt;span style="color: #999999;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/i&gt;&lt;br /&gt;
&lt;img border="0" src="http://1.bp.blogspot.com/-yswnos-64qM/T1eg_KXU5XI/AAAAAAAAALU/ltHL19AENs0/s1600/web-standard-activated-rest+(1).png" style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none;" /&gt;
&lt;span style="color: #999999; text-align: left;"&gt;&lt;i&gt;&lt;/i&gt;&lt;/span&gt;&lt;br /&gt;
&lt;i style="color: #999999; text-align: left;"&gt;&lt;span style="color: #999999;"&gt;&lt;i&gt;After you’ve +1’d&lt;/i&gt;&lt;/span&gt;&amp;nbsp;&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The +1 buttons you’ve already installed will automatically update; there’s nothing you need to do. Stop by the updated &lt;a href="https://developers.google.com/+/plugins/+1button/config?utm_source=blog&amp;amp;utm_medium=gplusplatform&amp;amp;utm_campaign=new1pixels"&gt;configuration tool&lt;/a&gt; to see how these changes look across all the various sizes and shapes of the +1 button.&lt;br /&gt;
&lt;br /&gt;
We’ll update this post when these changes graduate to the public.&lt;br /&gt;
&lt;br /&gt;
Follow the conversation on &lt;a href="https://plus.google.com/117721923550684960973/posts/bQJkeHhXmLc"&gt;Google+&lt;/a&gt;.
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Posted by &lt;a href="https://plus.google.com/117721923550684960973"&gt;Eric Steinlauf&lt;/a&gt;, Software Engineer, Google+&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6884131687395025558-3077146136238968645?l=googleplusplatform.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/GppBxyz/~4/Ap9W2Jbs7d4" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/3077146136238968645?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/3077146136238968645?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/GppBxyz/~3/Ap9W2Jbs7d4/new-look-for-1-button.html" title="A New Look for the +1 Button" /><author><name>Amy</name><uri>http://www.blogger.com/profile/12377319141980641278</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/-ct8BIIqoL1s/T1egz5AVbcI/AAAAAAAAALM/iG2r_UICKe8/s72-c/web-standard-rest+(1).png" height="72" width="72" /><feedburner:origLink>http://googleplusplatform.blogspot.com/2012/03/new-look-for-1-button.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUQNSHc8eCp7ImA9WhVTE0U.&quot;"><id>tag:blogger.com,1999:blog-6884131687395025558.post-3015847550323006339</id><published>2012-02-27T14:56:00.000-08:00</published><updated>2012-02-27T14:56:39.970-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-02-27T14:56:39.970-08:00</app:edited><title>Improving Google+ Plugins Across the Web</title><content type="html">Over a million websites use Google+ plugins -- like the &lt;a href="https://developers.google.com/+/plugins/+1button/config#utm_source=blog&amp;amp;utm_medium=gplusplatform&amp;amp;utm_campaign=02272012" target="_blank"&gt;+1 button&lt;/a&gt; and the &lt;a href="https://developers.google.com/+/plugins/badge/config#utm_source=blog&amp;amp;utm_medium=gplusplatform&amp;amp;utm_campaign=02272012" target="_blank"&gt;badge for Pages&lt;/a&gt; -- to help visitors connect with their brand and share their content with others. Today we're excited to announce a number of improvements to these plugins that make sharing and connecting even easier.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Easier to share from the +1 button
&lt;/b&gt;&lt;br /&gt;
Starting today, it’ll be a little easier to share right from the +1 buttons all across the web. Now, after you +1 something, the share box will pop open right away, without an extra click. Add a comment if you want, choose the people you want to share with, and you’re done. &lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Easier to follow brands and businesses
&lt;/b&gt;&lt;br /&gt;
When you add Google+ pages to your circles, it's typically to follow their news and updates. That's why we're updating badges for Google+ pages to read "Follow." With just one click, this button adds a business or brand to your "Following" circle, and if you want to customize which circle they're in, you can do that too.
&lt;br /&gt;
&lt;br /&gt;
If you're one of the many businesses and brands with a Google+ page, we've also put together a handy &lt;a href="http://plusfiledownloads.appspot.com/follow-style-guide.pdf" target="_blank"&gt;style guide (pdf)&lt;/a&gt; which includes recommended language and images for promoting your page.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Adding a badge for people, not just pages
&lt;/b&gt;&lt;br /&gt;
We heard you! Now anyone (including &lt;a href="http://www.britneyspears.com/" target="_blank"&gt;Britney Spears&lt;/a&gt;!) can add a &lt;a href="http://developers.google.com/+/plugins/badge/personal-config#utm_source=blog&amp;amp;utm_medium=gplusplatform&amp;amp;utm_campaign=02272012" target="_blank"&gt;personal Google+ badge&lt;/a&gt; to their web pages, and let visitors add them to circles quickly and easily.&lt;br /&gt;
We’ve got lots more planned for the Google+ plugins, stay tuned!
&lt;br /&gt;
&lt;br /&gt;
#googleplusupdate
&lt;br /&gt;
&lt;div style="text-align: left;"&gt;
&lt;span style="color: #222222; font-family: arial, sans-serif;"&gt;&lt;span style="font-size: 14px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;span class="post-author"&gt;Posted by Julie Farago, Engineering Manager, Google+&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6884131687395025558-3015847550323006339?l=googleplusplatform.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/GppBxyz/~4/daxfJsZllCE" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/3015847550323006339?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/3015847550323006339?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/GppBxyz/~3/daxfJsZllCE/improving-google-plugins-across-web.html" title="Improving Google+ Plugins Across the Web" /><author><name>Amy</name><uri>http://www.blogger.com/profile/12377319141980641278</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><feedburner:origLink>http://googleplusplatform.blogspot.com/2012/02/improving-google-plugins-across-web.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkYEQ3s-eCp7ImA9WhRbFUo.&quot;"><id>tag:blogger.com,1999:blog-6884131687395025558.post-3649679884823947044</id><published>2012-02-06T10:03:00.000-08:00</published><updated>2012-02-06T15:15:02.550-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-02-06T15:15:02.550-08:00</app:edited><title>Google+ Developers Page</title><content type="html">Today we’re launching the &lt;a href="https://plus.google.com/110967630299632321627"&gt;Google+ Developers page&lt;/a&gt; to help you stay connected to all the latest Google+ platform news, events, community, and more.  As the lead of the Google+Developer Relations team, I’m really looking forward to meeting you there --&amp;nbsp;&lt;a href="https://plus.google.com/110967630299632321627"&gt;add the page&lt;/a&gt; to your circles to join the conversation, comment on posts, and join our hangouts.&lt;br /&gt;
&lt;br /&gt;
Our team will host regular hangouts to talk about the +Platform, your experiences with it, and share tips and tricks with the community. Our weekly office hours hangouts take place every Wednesday at 11:30am - 12:15pm PDT, and can be accessed from our &lt;a href="https://plus.google.com/110967630299632321627"&gt;Google+ Developers page&lt;/a&gt;.  The +Platform team will also share Google+ developer events, conferences and hackathons, as well as photos and videos of the events.  In addition, we’ll announce and discuss our +Platform launches on our page.&lt;br /&gt;
&lt;br /&gt;
2012 is going to be a very exciting year for the Google+ Platform -- I look forward to seeing you on our new &lt;a href="https://plus.google.com/110967630299632321627"&gt;Google+ Developers page&lt;/a&gt;!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span class="post-author"&gt;Posted by &lt;a href="https://plus.google.com/u/1/108189587050871927619/posts"&gt;Chris Chabot&lt;/a&gt;, Google+ Developer Relations Team Lead&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6884131687395025558-3649679884823947044?l=googleplusplatform.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/GppBxyz/~4/_AdenE3qyiA" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/3649679884823947044?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/3649679884823947044?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/GppBxyz/~3/_AdenE3qyiA/google-developers-page.html" title="Google+ Developers Page" /><author><name>Amy</name><uri>http://www.blogger.com/profile/12377319141980641278</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><feedburner:origLink>http://googleplusplatform.blogspot.com/2012/02/google-developers-page.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEMDSHY4fSp7ImA9WhVXGEg.&quot;"><id>tag:blogger.com,1999:blog-6884131687395025558.post-1266528466754738801</id><published>2012-01-26T13:07:00.000-08:00</published><updated>2012-04-19T10:27:59.835-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-04-19T10:27:59.835-07:00</app:edited><title>More Options for Google+ Badges</title><content type="html">&lt;b&gt;UPDATE (2/2/12):&lt;/b&gt; The new &lt;a href="https://developers.google.com/+/plugins/badge/config#utm_source=blog&amp;amp;utm_medium=gplusplatform&amp;amp;utm_campaign=bbv2"&gt;Google+ badge&lt;/a&gt; is now out of preview and available to all users on all sites. 
&lt;br /&gt;
&lt;br /&gt;
When we &lt;a href="http://googleplusplatform.blogspot.com/2011/11/grow-your-audience-with-google.html"&gt;launched Google+ pages&lt;/a&gt; in November, we also &lt;a href="http://googleplusplatform.blogspot.com/2011/11/google-badges-drive-engagement-with.html"&gt;released Google+ badges&lt;/a&gt; to promote your Google+ presence right on your site. Starting today in &lt;a href="http://www.google.com/+/learnmore/platform-preview/#utm_source=blog&amp;amp;utm_medium=gplusplatform&amp;amp;utm_campaign=bbv2"&gt;developer preview&lt;/a&gt; (and soon available to all your users), we're adding more options for integrating the Google+ badge into your website. You can &lt;a href="https://developers.google.com/+/plugins/badge/preview/#utm_source=blog&amp;amp;utm_medium=gplusplatform&amp;amp;utm_campaign=bbv2"&gt;configure a badge&lt;/a&gt; with a width that fits your site design and choose a version that works better on darker sites. You'll also see that Google+ badges now include the unified +1 and circle count that we added to Pages &lt;a href="http://adwords.blogspot.com/2011/12/new-tools-and-controls-to-manage-your.html"&gt;last month&lt;/a&gt;.
&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="text-align: center;"&gt;
&lt;a href="http://4.bp.blogspot.com/-J0H4sfENRjA/Tx2Klekr_3I/AAAAAAAAAJ4/LJkkRnUB_xM/s1600/android+on+gplus.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/-J0H4sfENRjA/Tx2Klekr_3I/AAAAAAAAAJ4/LJkkRnUB_xM/s1600/android+on+gplus.png" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class="separator" style="text-align: center;"&gt;
&lt;a href="http://3.bp.blogspot.com/-__W1Dw5viGE/Tx2KuwaWtKI/AAAAAAAAAKA/f_IubNyIW6A/s1600/black+background.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/-__W1Dw5viGE/Tx2KuwaWtKI/AAAAAAAAAKA/f_IubNyIW6A/s1600/black+background.png" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class="separator" style="text-align: center;"&gt;
&lt;a href="http://3.bp.blogspot.com/-0mZjvQoG3iw/Tx2K0MivD4I/AAAAAAAAAKI/FmTDFmuAuH8/s1600/box.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/-0mZjvQoG3iw/Tx2K0MivD4I/AAAAAAAAAKI/FmTDFmuAuH8/s1600/box.png" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
If you’re still considering whether to add a Google+ badge on your website, consider this: We recently looked at top sites using the badge and found that, on average, the badge accounted for an additional 38% of followers. When you add the badge visitors to your website can discover your Google+ page and connect in a variety of ways: they can follow your Google+ page, +1 your site, share your site with their circles, see which of their friends have +1’d your site, and click through to visit your Google+ page.&lt;br /&gt;
&lt;br /&gt;
The Google+ Badge makes it easy for your fans to find and follow you on Google+. With these additional options, we hope it's even easier to &lt;a href="https://developers.google.com/+/plugins/badge/"&gt;create a badge&lt;/a&gt; that fits your website.
&lt;br /&gt;
&lt;br /&gt;
Follow the conversation on &lt;a href="https://plus.google.com/111732915546499031731/posts/hfGuxwPz6UX"&gt;Google+&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;span class="post-author"&gt;Posted by &lt;a href="https://plus.google.com/u/0/111732915546499031731/posts"&gt;Lucy Hadden&lt;/a&gt;, Software Engineer, Google+&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6884131687395025558-1266528466754738801?l=googleplusplatform.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/GppBxyz/~4/6rysl04Pk4o" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/1266528466754738801?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/1266528466754738801?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/GppBxyz/~3/6rysl04Pk4o/more-options-for-google-badges.html" title="More Options for Google+ Badges" /><author><name>Amy</name><uri>http://www.blogger.com/profile/12377319141980641278</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/-J0H4sfENRjA/Tx2Klekr_3I/AAAAAAAAAJ4/LJkkRnUB_xM/s72-c/android+on+gplus.png" height="72" width="72" /><feedburner:origLink>http://googleplusplatform.blogspot.com/2012/01/more-options-for-google-badges.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0AEQnY5eip7ImA9WhRQGEU.&quot;"><id>tag:blogger.com,1999:blog-6884131687395025558.post-4737481913461529441</id><published>2011-12-13T17:53:00.000-08:00</published><updated>2011-12-14T08:55:03.822-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-12-14T08:55:03.822-08:00</app:edited><title>Add antlers, mustaches, and more to apps in Hangouts</title><content type="html">For &lt;a href="http://us.movember.com/about/"&gt;&lt;strike&gt;N&lt;/strike&gt;Movember&lt;/a&gt; we added &lt;a href="https://plus.google.com/u/1/109908435403153802108/posts/C1ZM9L5jDJN"&gt;mustaches in hangouts&lt;/a&gt; and now for the holidays we’ve added antlers. Today, we are adding media effects like these to the &lt;a href="https://developers.google.com/+/hangouts/"&gt;Google+ Hangouts API&lt;/a&gt; developer preview, so that you can add your own special effects to Hangouts apps.&lt;br /&gt;
&lt;br /&gt;
This new API will let you detect the participant’s face and overlay your own image on it. Images can be attached to different parts of the face (nose, eyes, upper lip, etc.) and will track that point as the face moves. The image will rotate as the face rotates, and scale to the size of the face.&lt;br /&gt;
&lt;br /&gt;
The following code snippet will give you a sense of how simple it is to detect the nose tip of a participant and overlay a custom image. See the &lt;a href="https://developers.google.com/+/hangouts/reference"&gt;API documentation&lt;/a&gt; for more details.
&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;// Load the image file
var imageResource = gapi.hangout.av.effects.createImageResource(
   'http://your image file');

// Create the overlay
var overlay = imageResource.createFaceTrackingOverlay({
 trackingFeature: gapi.hangout.av.effects.FaceTrackingFeature.NOSE_TIP,
 scaleWithFace: true,
 rotateWithFace: true
});
overlay.setVisible(true);
&lt;/pre&gt;
&lt;br /&gt;
We are also adding an API that lets developers add their own sound to the hangouts. Here is a snippet.
&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;// Load an audio file
var audioResource = gapi.hangout.av.effects.createAudioResource(
   'http://your audio file');
// Play the sound
var sound = audioResource.play();
&lt;/pre&gt;
&lt;br /&gt;
Give it a try and add some fun and interesting elements to your hangouts apps. Follow the conversation on &lt;a href="https://plus.google.com/u/0/116916940622399669871/posts/UfBdSJyL98F"&gt;Google+&lt;/a&gt;. #seasonforshipping.
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span class="post-author"&gt;Posted by &lt;a href="https://plus.google.com/u/0/116916940622399669871/"&gt;Amit Fulay&lt;/a&gt;, Product Manager, Google+ Hangouts&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6884131687395025558-4737481913461529441?l=googleplusplatform.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/GppBxyz/~4/2GrK6reC3Ew" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/4737481913461529441?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/4737481913461529441?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/GppBxyz/~3/2GrK6reC3Ew/add-antlers-mustaches-and-more-to-apps.html" title="Add antlers, mustaches, and more to apps in Hangouts" /><author><name>Amy</name><uri>http://www.blogger.com/profile/12377319141980641278</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><feedburner:origLink>http://googleplusplatform.blogspot.com/2011/12/add-antlers-mustaches-and-more-to-apps.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DE8DSX4zcCp7ImA9WhRSFEs.&quot;"><id>tag:blogger.com,1999:blog-6884131687395025558.post-3997314574491676802</id><published>2011-11-09T11:50:00.000-08:00</published><updated>2011-11-16T10:07:58.088-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-11-16T10:07:58.088-08:00</app:edited><title>Google+ badges:  Drive Engagement with Your Users on Google+, Right from Your Own Website</title><content type="html">&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;UPDATE&lt;/b&gt; (11/16/11): The &lt;a href="https://developers.google.com/+/plugins/badge/config"&gt;Google+ badge&lt;/a&gt; is now out of preview and available to all users on all sites.
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On Monday we &lt;a href="http://googleblog.blogspot.com/2011/11/google-pages-connect-with-all-things.html"&gt;launched Google+ Pages&lt;/a&gt;, to help people connect with all the things they care about -- and lots of businesses and brands have already created pages.  One item you may have missed in the initial announcement was the project I worked on, the Google+ badge. The Google+ badge helps you grow your audience on Google+ and show more recommendations in Google search by letting people add you to their circles and +1 your page, all without leaving your site.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="text-align: center;"&gt;
&lt;a href="http://2.bp.blogspot.com/-jbbyaHSoeX8/TrrT7tD_-WI/AAAAAAAAAJA/zpZHti0uDy0/s1600/GeekDad.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/-jbbyaHSoeX8/TrrT7tD_-WI/AAAAAAAAAJA/zpZHti0uDy0/s1600/GeekDad.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class="separator" style="text-align: center;"&gt;
&lt;a href="http://2.bp.blogspot.com/-g5dF9ukJ87c/TrrT_lDpMAI/AAAAAAAAAJI/NUAYkTBrS-A/s1600/About+Lifehacker-1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/-g5dF9ukJ87c/TrrT_lDpMAI/AAAAAAAAAJI/NUAYkTBrS-A/s1600/About+Lifehacker-1.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
Today, we officially begin our roll out of that badge by making it available to our Google+ platform preview group. To get the badge, &lt;a href="http://www.google.com/+/learnmore/platform-preview/"&gt;sign up&lt;/a&gt; for the group and then visit our &lt;a href="https://developers.google.com/+/plugins/badge/preview"&gt;configuration tool&lt;/a&gt; and choose the badge size that’s best for your site. If you’re in the group, you may also begin to encounter the badge as you browse around the web.&lt;br /&gt;
&lt;br /&gt;
By using the Google+ badge to connect your website to your Google+ page, you:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;make it easy for your audience to subscribe to your posts and endorse and share your site.&amp;nbsp;&lt;/li&gt;
&lt;li&gt;get more personal recommendations around the web, by connecting +1’s for your website with +1’s on your Google+ page.&amp;nbsp;&lt;/li&gt;
&lt;li&gt;qualify for &lt;a href="http://www.google.com/support/plus/bin/answer.py?hl=en&amp;amp;p=direct_connect&amp;amp;answer=1711199"&gt;Google+ Direct Connect&lt;/a&gt;, which lets people type +your_site_name on Google search and automatically start following your page.&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
We’d love to hear any feedback, so please let us know what you think -- join us in the &lt;a href="https://groups.google.com/group/google-plus-developers/"&gt;Google+ Developers forum&lt;/a&gt; and follow the conversation on &lt;a href="https://plus.google.com/u/1/100566149204769044662/posts/1p2T1pYcjFj"&gt;Google+&lt;/a&gt;.
&lt;br /&gt;
&lt;br /&gt;
&lt;span class="post-author"&gt;Posted by &lt;a href="https://plus.google.com/100566149204769044662/"&gt;Todd Volkert&lt;/a&gt;, Technical lead,  Google+ badge&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6884131687395025558-3997314574491676802?l=googleplusplatform.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/GppBxyz/~4/90H_sfb80pg" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/3997314574491676802?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/3997314574491676802?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/GppBxyz/~3/90H_sfb80pg/google-badges-drive-engagement-with.html" title="Google+ badges:  Drive Engagement with Your Users on Google+, Right from Your Own Website" /><author><name>Amy</name><uri>http://www.blogger.com/profile/12377319141980641278</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/-jbbyaHSoeX8/TrrT7tD_-WI/AAAAAAAAAJA/zpZHti0uDy0/s72-c/GeekDad.jpg" height="72" width="72" /><feedburner:origLink>http://googleplusplatform.blogspot.com/2011/11/google-badges-drive-engagement-with.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0ANQHs4eyp7ImA9WhRREk4.&quot;"><id>tag:blogger.com,1999:blog-6884131687395025558.post-6348378050481954269</id><published>2011-11-07T10:46:00.000-08:00</published><updated>2011-11-25T08:49:51.533-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-11-25T08:49:51.533-08:00</app:edited><title>Grow your audience with Google+</title><content type="html">&lt;span class="Apple-style-span" style="font-style: italic;"&gt;Cross posted from the &lt;/span&gt;&lt;a href="http://adsense.blogspot.com/" style="font-style: italic;"&gt;Inside AdSense&lt;/a&gt;&lt;span class="Apple-style-span" style="font-style: italic;"&gt; blog&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;By &lt;a href="https://plus.google.com/102648148748642147788/posts"&gt;Dennis Troper&lt;/a&gt;, Product Management Director, Google+ Pages

&lt;/i&gt;&lt;span class="Apple-style-span" style="font-style: italic;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;span class="byline-author"&gt;At Google, we help grow your audience by connecting you with new users. We introduced the &lt;a href="http://www.google.com/webmasters/+1/button/#utm_source=as&amp;amp;utm_medium=blog&amp;amp;utm_campaign=pages"&gt;+1 button&lt;/a&gt; so your site would stand out on search and your users could easily share your content on Google+. But, sometimes you want to join the conversation and post content directly to where people are sharing. &lt;br /&gt;&lt;br /&gt;Today we’re introducing &lt;a href="http://www.google.com/+/business#utm_source=as&amp;amp;utm_medium=blog&amp;amp;utm_campaign=pages"&gt;Google+ for Business&lt;/a&gt;, a collection of tools and products that help you grow your audience. At the core of this is Google+ Pages, your site’s identity on Google+.&lt;br /&gt;&lt;b&gt;&lt;br /&gt;Google+ Pages: Have real conversations with the right people&lt;/b&gt;&lt;br /&gt;To get your site on Google+, you first need to create a Google+ Page. On your page, you can engage in conversations with your visitors, direct readers back to your site for the latest updates, send tailored messages to specific groups of people, and see how many +1’s you have across the web. Google+ Pages will help you build relationships with your users, encouraging them to spend more time engaging with your content.&lt;/span&gt;&lt;br /&gt;
&lt;span class="byline-author"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style="text-align: center;"&gt;
&lt;span class="byline-author"&gt;&lt;a href="http://4.bp.blogspot.com/-kCNIgNWD3Y0/Trdc024rXlI/AAAAAAAAB7g/qEVTHTeEmL0/s1600/screenshot1.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="280" src="http://4.bp.blogspot.com/-kCNIgNWD3Y0/Trdc024rXlI/AAAAAAAAB7g/qEVTHTeEmL0/s400/screenshot1.png" width="400" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="text-align: center;"&gt;
&lt;i&gt;&lt;span class="byline-author"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&lt;span class="byline-author"&gt;Google+ Pages are at the heart of Google+ for Business&lt;/span&gt;&lt;/i&gt;&lt;/div&gt;
&lt;span class="byline-author"&gt;&lt;br /&gt;&lt;i&gt;Hangouts&lt;/i&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class="separator" style="text-align: center;"&gt;
&lt;span class="byline-author"&gt;&lt;a href="http://1.bp.blogspot.com/-Ll-Aq112ijo/TrddObIqK5I/AAAAAAAAB7s/RrhaBotoM_E/s1600/screenshot2.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/-Ll-Aq112ijo/TrddObIqK5I/AAAAAAAAB7s/RrhaBotoM_E/s320/screenshot2.png" width="60" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&lt;span class="byline-author"&gt;

Sometimes you might want to chat with your users face-to-face.&amp;nbsp; For example, if you run a food blog, you may want to invite a chef to talk about her favorite recipe, or if you manage a fashion review site, beauty specialists might want to hold how-to sessions with makeup tips. &lt;a href="http://www.google.com/support/plus/bin/answer.py?hl=en&amp;amp;answer=1215273"&gt;Hangouts&lt;/a&gt; make this easy, by letting you have high-quality video chats with nine people with a single click. You can use Hangouts to hold live forums, break news or simply get to know people better, all in real time.&lt;/span&gt;&lt;br /&gt;
&lt;span class="byline-author"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="text-align: center;"&gt;
&lt;span class="byline-author"&gt;&lt;a href="http://3.bp.blogspot.com/-d1mh1y3hEG8/Trddl4cWSiI/AAAAAAAAB74/0wXrfQm-Yz4/s1600/screenshot3.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="192" src="http://3.bp.blogspot.com/-d1mh1y3hEG8/Trddl4cWSiI/AAAAAAAAB74/0wXrfQm-Yz4/s400/screenshot3.png" width="400" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="text-align: center;"&gt;
&lt;i&gt;&lt;span class="byline-author"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&lt;span class="byline-author"&gt;Hangouts let you meet your customers, face-to-face&lt;/span&gt;&lt;/i&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;span class="byline-author"&gt;&lt;i&gt;Circles&lt;/i&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class="separator" style="text-align: center;"&gt;
&lt;span class="byline-author"&gt;&lt;a href="http://4.bp.blogspot.com/-uJmAmKL7X0M/Trdd33EvJcI/AAAAAAAAB8E/g-TaUCg8HfA/s1600/screenshot4.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/-uJmAmKL7X0M/Trdd33EvJcI/AAAAAAAAB8E/g-TaUCg8HfA/s320/screenshot4.png" width="50" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&lt;span class="byline-author"&gt;

&lt;a href="http://www.google.com/support/plus/bin/answer.py?hl=en&amp;amp;answer=1047805&amp;amp;topic=1257347"&gt;Circles&lt;/a&gt; allow you to group followers of your Page into smaller audiences. You can then share specific messages with specific groups. For example, you could create a Circle containing your most loyal readers and offer them exclusive content. &lt;/span&gt;&lt;br /&gt;
&lt;span class="byline-author"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="byline-author"&gt;&lt;b&gt;The Google+ badge: Grow your audience on Google+&lt;/b&gt;&lt;br /&gt;To help your users find your page and start sharing, there are two buttons you can add to your site by visiting our &lt;a href="https://developers.google.com/+/plugins/badge/config#utm_source=as&amp;amp;utm_medium=blog&amp;amp;utm_campaign=pages"&gt;Google+ badge configuration tool&lt;/a&gt;:&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="text-align: center;"&gt;
&lt;span class="byline-author"&gt;&lt;a href="http://2.bp.blogspot.com/-w3kgFqhXU7I/Trduf3NRK-I/AAAAAAAAB80/W4cQ_Bt8oBE/s1600/100.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/-w3kgFqhXU7I/Trduf3NRK-I/AAAAAAAAB80/W4cQ_Bt8oBE/s200/100.png" width="50" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span class="byline-author"&gt;&lt;a href="http://www.google.com/support/webmasters/bin/answer.py?answer=1708844"&gt;The Google+ icon&lt;/a&gt;, a small icon that directly links to your Page.&lt;/span&gt;&lt;/div&gt;
&lt;div class="separator" style="text-align: center;"&gt;
&lt;span class="byline-author"&gt;&lt;a href="http://1.bp.blogspot.com/-4MpiEI3IwOI/TrdwNcvuGhI/AAAAAAAAB9A/RtcdzBwwsVU/s1600/Google%252B%2Bbadge.png" imageanchor="1" style="float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/-4MpiEI3IwOI/TrdwNcvuGhI/AAAAAAAAB9A/RtcdzBwwsVU/s320/Google%252B%2Bbadge.png" width="280" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;span class="byline-author"&gt;The Google+ badge, which we’re introducing in the coming days. This badge lets people add your page to their circles without leaving your site, and allows them to get updates from your site via Google+.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;span class="byline-author"&gt;&lt;b&gt;Extend the power of +1, stand out in Google search&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="byline-author"&gt;You can also link your site to your Google+ page so that all your +1s -- from your Page, your website, and search results -- will get tallied together and appear as a single total. Potential visitors will be more likely to see the recommendations your site has received, whether they’re looking at a search result, your website, or your Page, meaning your +1’s will reach not only the 40 million users of Google+, but all the people who come to Google every day. You can link your site to your Page either using the Google+ badge or with a&amp;nbsp; piece of code. To set this up, visit our Google+ badge configuration tool. &lt;br /&gt;&lt;b&gt;&lt;br /&gt;Bringing Google+ to the rest of Google&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class="separator" style="text-align: center;"&gt;
&lt;span class="byline-author"&gt;&lt;a href="http://1.bp.blogspot.com/-1fuDlRmH1HA/TrdnUVEabxI/AAAAAAAAB8o/o6MOKffQ38I/s1600/screenshot6.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/-1fuDlRmH1HA/TrdnUVEabxI/AAAAAAAAB8o/o6MOKffQ38I/s200/screenshot6.png" width="75" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&lt;span class="byline-author"&gt;

Our ultimate vision for Google+ is to transform the overall Google experience -- weaving identity and sharing into all of our products. Beginning today, we’re rolling out a new experimental feature to a small group of eligible publishers, &lt;a href="http://www.google.com/support/plus/?hl=en&amp;amp;p=direct_connect"&gt;Google+ Direct Connect&lt;/a&gt; -- an easy way for your audience to find your Google+ Page on Google search.&amp;nbsp; If you’ve linked your &lt;a href="https://developers.google.com/+/plugins/badge/config#utm_source=as&amp;amp;utm_medium=blog&amp;amp;utm_campaign=pages"&gt;Page to your site&lt;/a&gt; and you &lt;a href="http://www.google.com/support/plus/?hl=en&amp;amp;p=direct_connect"&gt;qualify&lt;/a&gt;, when someone searches for your website’s name with the ‘+’ sign before it Direct Connect will send them directly to your Page. For example, try searching for ‘+YouTube’ on Google. Users will also be prompted to automatically add Pages they find through Direct Connect to their circles.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="text-align: center;"&gt;
&lt;i&gt;&lt;span class="byline-author"&gt;&lt;a href="http://3.bp.blogspot.com/-SHGhLzTYjC4/TrdfxcN8bmI/AAAAAAAAB8c/K4PNDiQHb-g/s1600/screenshot7.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="319" src="http://3.bp.blogspot.com/-SHGhLzTYjC4/TrdfxcN8bmI/AAAAAAAAB8c/K4PNDiQHb-g/s400/screenshot7.png" width="400" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/i&gt;&lt;/div&gt;
&lt;div style="text-align: center;"&gt;
&lt;span class="byline-author"&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="byline-author"&gt;&lt;i&gt;Direct Connect suggestions start populating as you type on Google.com&lt;/i&gt;&lt;/span&gt;&lt;/div&gt;
&lt;span class="byline-author"&gt;&lt;b&gt;&lt;br /&gt;Just the beginning&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="byline-author"&gt;We want to help you get your site on Google+ as soon as possible, so we’re opening the field trial for Google+ Pages to everyone today. &lt;a href="http://www.google.com/+/business/#utm_source=as&amp;amp;utm_medium=blog&amp;amp;utm_campaign=pages"&gt;Creating a Google+ Page&lt;/a&gt; only takes a few minutes. To get started, you’ll need a personal Google+ profile. If you don’t have a Google account, it’s very quick and easy to &lt;a href="http://plus.google.com/"&gt;join&lt;/a&gt;. And if you’re looking for inspiration, check out some of the sites that are already starting to set up their Pages:&lt;/span&gt;&lt;br /&gt;
&lt;span class="byline-author"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class="separator" style="text-align: center;"&gt;
&lt;img alt="Partner Logos" height="339.2" src="http://1.bp.blogspot.com/-ZIkbUdbU0rI/TrgbO4vnTiI/AAAAAAAAASw/1lMvTwFHqzA/s400/pages%2Blogos%25284%2529.pptx.png" usemap="#partnermap" width="529" /&gt;&lt;map name="partnermap"&gt;&lt;area alt="Burberry" coords="93, 4, 165, 74" href="https://plus.google.com/110651620964477160777" shape="rect"&gt;&lt;/area&gt;&lt;area alt="HM" coords="184, 82, 258, 240" href="https://plus.google.com/115900903196483234016" shape="rect"&gt;&lt;/area&gt;&lt;area alt="Macys" coords="368, 182, 436, 251" href="https://plus.google.com/116142452604357423186" shape="rect"&gt;&lt;/area&gt;&lt;area alt="Pepsi" coords="364, 267, 437, 339" href="https://plus.google.com/111883881632877146615" shape="rect"&gt;&lt;/area&gt;&lt;area alt="ABC News" coords="91, 87, 165, 157" href="https://plus.google.com/108686021205441482363" shape="rect"&gt;&lt;/area&gt;&lt;area alt="Amazon" coords="95, 181, 163, 249" href="https://plus.google.com/110356773655474889799" shape="rect"&gt;&lt;/area&gt;&lt;area alt="Assassins_Creed" coords="95, 266, 165, 336" href="https://plus.google.com/116281738422983584916" shape="rect"&gt;&lt;/area&gt;&lt;area alt="ATT" coords="458, 6, 527, 75" href="https://plus.google.com/111315125550019591892" shape="rect"&gt;&lt;/area&gt;&lt;area alt="Breaking_News" coords="1, 179, 75, 251" href="https://plus.google.com/108404515213153345305" shape="rect"&gt;&lt;/area&gt;&lt;area alt="Orange" coords="272, 265, 530, 338" href="https://plus.google.com/105593086134906885039" shape="rect"&gt;&lt;/area&gt;&lt;area alt="DC_Comics" coords="182, 88, 255, 155" href="https://plus.google.com/113519537265944504829" shape="rect"&gt;&lt;/area&gt;&lt;area alt="Dell" coords="365, 85, 436, 156" href="https://plus.google.com/117161668189080869053" shape="rect"&gt;&lt;/area&gt;&lt;area alt="NBC_News" coords="273, 92, 348, 155" href="https://plus.google.com/114810779645279671611/" shape="rect"&gt;&lt;/area&gt;&lt;area alt="Gol_Linhas_aeras" coords="275, 186, 349, 246" href="https://plus.google.com/110309663598680066334" shape="rect"&gt;&lt;/area&gt;&lt;area alt="Kia" coords="1, 269, 74, 332" href="https://plus.google.com/116940697436648352120" shape="rect"&gt;&lt;/area&gt;&lt;area alt="LOreal" coords="182, 266, 254, 327" href="https://plus.google.com/101258342230925570027" shape="rect"&gt;&lt;/area&gt;&lt;area alt="Marvel" coords="275, 3, 347, 76" href="https://plus.google.com/108523337373444601877" shape="rect"&gt;&lt;/area&gt;&lt;area alt="NYTimes" coords="183, 3, 256, 74" href="https://plus.google.com/107096716333816995401" shape="rect"&gt;&lt;/area&gt;&lt;area alt="Piaget" coords="457, 269, 528, 338" href="https://plus.google.com/100243859631724702467" shape="rect"&gt;&lt;/area&gt;&lt;area alt="Shady" coords="458, 182, 524, 240" href="https://plus.google.com/110104489090376175548" shape="rect"&gt;&lt;/area&gt;&lt;area alt="Tmobile" coords="455, 89, 529, 157" href="https://plus.google.com/b/101502056223282249599/" shape="rect"&gt;&lt;/area&gt;&lt;area alt="Toyota" coords="3, 82, 76, 155" href="https://plus.google.com/110937137992985950150" shape="rect"&gt;&lt;/area&gt;&lt;area alt="Uniqlo" coords="365, 2, 436, 69" href="https://plus.google.com/118196572751899798724" shape="rect"&gt;&lt;/area&gt;&lt;area alt="Virgin" coords="1, 1, 72, 70" href="https://plus.google.com/109525300902232636271" shape="rect"&gt;&lt;/area&gt;&lt;/map&gt;&lt;/div&gt;
&lt;br /&gt;
To learn more about how Google+ works for your site, check out the &lt;a href="http://www.google.com/+/business#utm_source=as&amp;amp;utm_medium=blog&amp;amp;utm_campaign=pages"&gt;Google+ Your Business site&lt;/a&gt;. We’re just getting started, and have many more features planned for the coming weeks and months. To keep up to date on the latest news and tips, add the &lt;a href="https://plus.google.com/u/1/115200251016762857369/"&gt;Google+ Your Business page&lt;/a&gt; to your circles. If you have ideas on how we can improve Google+ for your site, &lt;a href="http://www.google.com/intl/en-US/+/learnmore/forum/"&gt;we’d love to hear them&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;Posted by &lt;a href="https://plus.google.com/109599220524260072765/posts"&gt;Amy Walgenbach&lt;/a&gt;, Google+ marketing&lt;/i&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6884131687395025558-6348378050481954269?l=googleplusplatform.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/GppBxyz/~4/I6x0tS4odhY" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/6348378050481954269?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/6348378050481954269?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/GppBxyz/~3/I6x0tS4odhY/grow-your-audience-with-google.html" title="Grow your audience with Google+" /><author><name>Amy</name><uri>http://www.blogger.com/profile/12377319141980641278</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/-kCNIgNWD3Y0/Trdc024rXlI/AAAAAAAAB7g/qEVTHTeEmL0/s72-c/screenshot1.png" height="72" width="72" /><feedburner:origLink>http://googleplusplatform.blogspot.com/2011/11/grow-your-audience-with-google.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUUDSXc_eSp7ImA9WhdUF0o.&quot;"><id>tag:blogger.com,1999:blog-6884131687395025558.post-7763513351912994682</id><published>2011-10-04T16:29:00.000-07:00</published><updated>2011-10-04T17:07:58.941-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-10-04T17:07:58.941-07:00</app:edited><title>Talk Shop During Google+ Platform Office Hours</title><content type="html">Engaging and learning with developers is a key piece of the Google+ platform. We enjoy interacting with you in &lt;a href="http://plus.google.com/"&gt;Google+&lt;/a&gt;, in the &lt;a href="http://developers.google.com/+/discussions"&gt;Discussion Board&lt;/a&gt;, and getting your feedback in the &lt;a href="http://code.google.com/p/google-plus-platform/issues/list"&gt;issue tracker&lt;/a&gt;.&amp;nbsp;We are always looking for more ways to gather feedback and to help you with any coding questions you might have, so we’re beginning regular &lt;a href="http://developers.google.com/+/office-hours"&gt;Office Hours&lt;/a&gt;. Office Hours give you the opportunity to ask in-depth questions and get help debugging your code with our Google+ Engineering and Developer Relations teams.&lt;br /&gt;
&lt;br /&gt;
We are hosting Office Hours every week in a Hangout at 11:30am - 12:15pm PST. To find out which hangout to join for a given week, visit our &lt;a href="http://developers.google.com/+/office-hours"&gt;Office Hours page&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
During Office Hours we will be answering technical questions about the Google+ platform we received before the Hangout, as well as questions you ask in the hangout - so come prepared! We won’t be limiting focus to a particular Google+ platform feature initially, though we may bring guests from specific teams who are experts on certain features, like the Hangouts API. In the future, we may add extra time slots to include our friends from around the world.&lt;br /&gt;
&lt;br /&gt;
Hope to see you in our next hangout on Wednesday, Oct 5th at 11:30am PDT.&lt;br /&gt;
&lt;br /&gt;
Comment on this post on &lt;a href="https://plus.google.com/u/1/108249232416813189685/posts/AocxhxjZo9V"&gt;Google+&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;span class="post-author"&gt;Posted by &lt;a href="https://plus.google.com/u/1/108249232416813189685/posts"&gt;Jon Beri&lt;/a&gt;, Google+ Developer Relations &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6884131687395025558-7763513351912994682?l=googleplusplatform.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/GppBxyz/~4/7TtRMJg-stc" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/7763513351912994682?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/7763513351912994682?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/GppBxyz/~3/7TtRMJg-stc/talk-shop-during-google-platform-office.html" title="Talk Shop During Google+ Platform Office Hours" /><author><name>Amy</name><uri>http://www.blogger.com/profile/12377319141980641278</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><feedburner:origLink>http://googleplusplatform.blogspot.com/2011/10/talk-shop-during-google-platform-office.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEYFRHs6cCp7ImA9WhdUF0g.&quot;"><id>tag:blogger.com,1999:blog-6884131687395025558.post-1016216394957309859</id><published>2011-10-04T11:09:00.000-07:00</published><updated>2011-10-04T11:15:15.518-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-10-04T11:15:15.518-07:00</app:edited><title>Google+ APIs: Now With Search and More!</title><content type="html">Thank you to all of you who tried out our first &lt;a href="http://googleplusplatform.blogspot.com/2011/09/getting-started-on-google-api.html"&gt;Google+ API release&lt;/a&gt; and let us know how you were using it. And thank you also to those of you who asked for more. In the spirit of releasing early and often, today we’ve released some of the new features that you requested.
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Search for it&lt;/b&gt;
&lt;br /&gt;
&lt;br /&gt;
Last month we launched &lt;a href="http://googleblog.blogspot.com/2011/09/google-92-93-94-95-96-97-98-99-100.html"&gt;search in Google+&lt;/a&gt;, and now it’s available in the API. You can search for public posts using the new &lt;a href="https://developers.google.com/+/api/latest/activities/search"&gt;activities.search&lt;/a&gt; method by sending the following HTTP request:
&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;GET 
https://www.googleapis.com/plus/v1/activities?query=cookie%20recipes&amp;amp;orderBy=best&amp;amp;key=[yourAPIKey]&lt;/pre&gt;
&lt;br /&gt;
This method searches across the body and comments of public posts. It returns the following JSON encoded output (excerpted for brevity):
&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;{
 "kind": "plus#activityFeed",
 "title": "Plus Search for cookie recipes",
 "updated": "2011-09-30T16:57:34.479Z",
 "id": "tag:google.com,2010:buzz-search-feed:x4rIYTKpR7NZCL8Id8RHXQ",
 "items": [
  {
   "kind": "plus#activity",
   “id”: “123”,
   "title": "You have to try these out.",
   "object": {
    "objectType": "note",
    "content": "I’m baking halloween cookies!",
   },
   {
   "kind": "plus#activity",
   “id”: “456”,
   "title": "Cookies",
   "object": {
    "objectType": "note",
    "content": "Cookies and milk for dinner. Don’t judge me.",
   },
 ]
}&lt;/pre&gt;
&lt;br /&gt;
You can search for people by using the &lt;a href="https://developers.google.com/+/api/latest/people/search"&gt;people.search&lt;/a&gt; method:
&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;GET https://www.googleapis.com/plus/v1/people?query=vic%20gundotra&amp;amp;key=[yourAPIKey]&lt;/pre&gt;
&lt;br /&gt;
This searches across public profile information including fields such as name, bio, location, tag line, and description.
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;The rest of the conversation&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
Our first API release let you retrieve public posts.  We’ve now added ways for you to see how people are publicly engaging with those posts -- you can find out who reshared a post or who +1’d a post, and you can read the comments on a post.
&lt;br /&gt;
&lt;br /&gt;
The new method &lt;a href="https://developers.google.com/+/api/latest/people/listByActivity"&gt;people.listByActivity&lt;/a&gt; supports retrieving resharers and +1’ers by sending the following HTTP requests:
&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;GET https://www.googleapis.com/plus/v1/activities/{activityId}/people/resharers?key=[yourAPIKey]
GET https://www.googleapis.com/plus/v1/activities/{activityId}/people/plusoners?key=[yourAPIKey]&lt;/pre&gt;
&lt;br /&gt;
And comments can be retrieved by the new &lt;a href="https://developers.google.com/+/api/latest/comments/list"&gt;comments.list&lt;/a&gt; and &lt;a href="https://developers.google.com/+/api/latest/comments/get"&gt;comments.get&lt;/a&gt; methods:
&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;GET https://www.googleapis.com/plus/v1/activities/{activityId}/comments?key=[yourAPIKey]
GET https://www.googleapis.com/plus/v1/comment/{commentId}?key=[yourAPIKey]&lt;/pre&gt;
&lt;br /&gt;
&lt;b&gt;Tell us what you think&lt;/b&gt;
&lt;br /&gt;
&lt;br /&gt;
As an API developer, I love seeing what people build on top of the APIs I’ve worked on. We have been reading your posts on the &lt;a href="http://developers.google.com/+/discussions"&gt;Discussion Board&lt;/a&gt; and &lt;a href="http://code.google.com/p/google-plus-platform/issues/list"&gt;issue tracker&lt;/a&gt;&amp;nbsp;and I am excited to see more of your creative ideas. We will continue incorporating your feedback into our design discussions, so please keep it coming.
&lt;br /&gt;
&lt;br /&gt;
Follow the conversation on &lt;a href="https://plus.google.com/u/1/106795562240032292110/posts/SL6Sm3Qd4WR"&gt;Google+&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;span class="post-author"&gt;Posted by &lt;a href="https://plus.google.com/u/1/106795562240032292110"&gt;Jordanna Chord&lt;/a&gt;, Software Engineer, Google+ API Team&lt;/span&gt;

&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6884131687395025558-1016216394957309859?l=googleplusplatform.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/GppBxyz/~4/-0-aTy3F9lY" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/1016216394957309859?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/1016216394957309859?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/GppBxyz/~3/-0-aTy3F9lY/google-apis-now-with-search-and-more.html" title="Google+ APIs: Now With Search and More!" /><author><name>Amy</name><uri>http://www.blogger.com/profile/12377319141980641278</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><feedburner:origLink>http://googleplusplatform.blogspot.com/2011/10/google-apis-now-with-search-and-more.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Ak4MQXoyfCp7ImA9WhdVFU4.&quot;"><id>tag:blogger.com,1999:blog-6884131687395025558.post-1324454522464434977</id><published>2011-09-20T09:00:00.000-07:00</published><updated>2011-09-20T10:16:20.494-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-09-20T10:16:20.494-07:00</app:edited><title>Introducing the Google+ Hangouts API</title><content type="html">In the three months since we launched face-to-face-to-face communication in Google+ Hangouts, I’ve been impressed by the many ways people use them.  We’ve seen Hangouts for &lt;a href="https://plus.google.com/u/0/113186623583029971455/posts/UrcKKL8GcMY"&gt;game shows&lt;/a&gt;, &lt;a href="http://www.google.com/search?hl=en&amp;amp;safe=active&amp;amp;sa=X&amp;amp;ei=T8p4TojsBuvFsQKuuunIDQ&amp;amp;sqi=2&amp;amp;ved=0CBcQvwUoAQ&amp;amp;q=fantasy+football+google+hangout&amp;amp;spell=1&amp;amp;biw=966&amp;amp;bih=601"&gt;fantasy football drafts&lt;/a&gt;, &lt;a href="https://plus.google.com/u/0/113186623583029971455/posts/1UNzP3YAEs2"&gt;guitar lessons&lt;/a&gt; and even &lt;a href="https://plus.google.com/100908975452307762035/posts/Gza114XoS59"&gt;hangouts for writers&lt;/a&gt; to break their solitary confinement.  That’s just the beginning.  Real-time applications are more engaging, fun, and interactive, but were hard for developers to deliver.  Until now.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;Today we’re launching the Developer Preview of the &lt;a href="http://developers.google.com/+/hangouts/"&gt;Hangouts API&lt;/a&gt;, another small piece of the Google+ platform.  It enables you to add your own experiences to Hangouts and instantly build real-time applications, just like our first application, the built-in YouTube player.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;The integration model is simple -- you build a web app, register it with us, and specify who on your team can load it into their Hangout.  Your app behaves like a normal web app, plus it can take part in the real-time conversation with new APIs like synchronization.  Now you can create a “shared state” among all instances of your app so that all of your users can be instantly notified of changes made by anyone else.  (This is how the YouTube player keeps videos in sync.)  And we’ve added our first few multimedia APIs so you can, for example, mute the audio and video feeds of Hangout participants.&amp;nbsp; 
&lt;br /&gt;
&lt;br /&gt;
When you’re ready to start hacking, we’re ready for you -- read the &lt;a href="http://developers.google.com/+/hangouts"&gt;documentation&lt;/a&gt;, &lt;a href="https://code.google.com/apis/console"&gt;sign up&lt;/a&gt;, and start coding.   We’re anxious to get your &lt;a href="http://developers.google.com/+/discussions"&gt;feedback&lt;/a&gt;, since this is a very early version of the API.  We’ll be making improvements and moving towards full production based on what we learn together.  And we’ll be releasing new updates on a regular basis, so stay tuned!&lt;br /&gt;
&lt;br /&gt;
Follow the conversation on &lt;a href="https://plus.google.com/116675628399793386012/posts/CWk286p1bw3"&gt;Google+&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;span class="post-author"&gt;Posted by &lt;a href="https://plus.google.com/116675628399793386012"&gt;Richard Dunn&lt;/a&gt;, Technical lead, Google+ platform for Hangouts&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6884131687395025558-1324454522464434977?l=googleplusplatform.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/GppBxyz/~4/pAkHuJR5QiY" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/1324454522464434977?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/1324454522464434977?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/GppBxyz/~3/pAkHuJR5QiY/introducing-google-hangouts-api.html" title="Introducing the Google+ Hangouts API" /><author><name>Google+ Platform</name><uri>http://www.blogger.com/profile/16641336613709105503</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><feedburner:origLink>http://googleplusplatform.blogspot.com/2011/09/introducing-google-hangouts-api.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkQESX0zeCp7ImA9WhdVEU4.&quot;"><id>tag:blogger.com,1999:blog-6884131687395025558.post-4101126557143718531</id><published>2011-09-15T11:27:00.000-07:00</published><updated>2011-09-15T17:51:48.380-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-09-15T17:51:48.380-07:00</app:edited><title>Getting Started on the Google+ API</title><content type="html">The Google+ project brings the &lt;a href="http://googleblog.blogspot.com/2011/06/introducing-google-project-real-life.html"&gt;nuance and richness of real-life sharing to software&lt;/a&gt;. The Google+ platform brings that nuance and richness to all of the web. We started with Google’s own products, added the +1 button for site owners and content publishers, and introduced games from a handful of partners. That’s just the beginning though — we want every one of you who builds applications to be able to include rich sharing, identity, and conversations in your app. Today, we’re taking the next step on that journey by launching the first of the Google+ APIs.&lt;br /&gt;
&lt;br /&gt;
&lt;strong style="font-size: 14px;"&gt;Let's Go Public&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
Google+ gives users full control over their information, supporting everything from intimate conversations with family to public showcases and debates. This initial API release is focused on &lt;span style="font-weight: bold;"&gt;public&lt;/span&gt; data only — it lets you read information that people have shared publicly on Google+. For example, if you want to get my profile information, you can use the &lt;a href="https://developers.google.com/+/api/latest/people/get"&gt;people.get&lt;/a&gt; method by sending the following HTTP request:
&lt;br /&gt;
&lt;pre&gt;GET https://www.googleapis.com/plus/v1/people/108189587050871927619?key=yourAPIKey&lt;/pre&gt;
which returns the following JSON encoded output (excerpted for brevity):&lt;br /&gt;
&lt;pre&gt;{
 "kind": "plus#person",
 "id": "108189587050871927619",
 "displayName": "Chris Chabot",
 "image": {
  "url": "https://lh5.googleusercontent.com/-cQNLOQzkGpE/AAAAAAAAAAI/AAAAAAAAEjo/M9_pXL-ra4Q/photo.jpg"
 },
 "organizations": [
  {
   "name": "Google+ Developer Relations",
   "title": "Developer Advocate &amp;amp; Manager",
   "type": "work"
  }
 ]
}&lt;/pre&gt;
Similarly, you can get a list of my most recent public posts by using the &lt;a href="https://developers.google.com/+/api/latest/activities/list"&gt;activities.list&lt;/a&gt; method:
&lt;br /&gt;
&lt;pre&gt;GET https://www.googleapis.com/plus/v1/people/108189587050871927619/activities/public?key=&lt;a href="https://developers.google.com/+/api/oauth#apikey"&gt;yourAPIKey&lt;/a&gt;&lt;/pre&gt;
Because we’re starting with public data only, you simply need to register your app before making requests. And if you aren't yet sure which Google+ user is running your app (for example, because they're installing it for the first time), then you can use the new plus.me OAuth2 scope to ask the user who they are.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://2.bp.blogspot.com/-XV4uMT_Pn7g/TnI5T7BCmpI/AAAAAAAAAIw/CecR4H-s80k/s1600/authorize.png"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5652643496725748370" src="http://2.bp.blogspot.com/-XV4uMT_Pn7g/TnI5T7BCmpI/AAAAAAAAAIw/CecR4H-s80k/s320/authorize.png" style="border: 0px; cursor: hand; cursor: pointer; display: block; height: 273px; margin: 0px auto 2px; text-align: center; width: 320px;" /&gt;&lt;/a&gt;After your application has requested this scope, you can use the special “me” identifier rather than the long numeric identifier:
&lt;br /&gt;
&lt;pre&gt;GET https://www.googleapis.com/plus/v1/people/me&lt;/pre&gt;
&lt;strong style="font-size: 14px;"&gt;On The Shoulders of Giants&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
We love the way the programmable web has evolved, so we’re using existing standards and best practices wherever we can:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Our API methods are RESTful HTTP requests which return JSON responses.&lt;/li&gt;
&lt;li&gt;Our payload formats use standard syntax (e.g. &lt;a href="http://portablecontacts.net/"&gt;PoCo&lt;/a&gt; for people info, &lt;a href="http://activitystrea.ms/"&gt;ActivityStrea.ms&lt;/a&gt; for activities).&lt;/li&gt;
&lt;li&gt;We use &lt;a href="http://oauth.net/2/"&gt;OAuth 2&lt;/a&gt; for secure trusted access to user data.&lt;/li&gt;
&lt;/ul&gt;
In addition, since most of us no longer write raw HTTP requests these days, we provide libraries for your favorite language: &lt;a href="http://code.google.com/p/google-api-java-client/"&gt;Java&lt;/a&gt;, &lt;a href="http://code.google.com/p/gwt-google-apis/"&gt;GWT&lt;/a&gt;, &lt;a href="http://code.google.com/p/google-api-python-client/"&gt;Python&lt;/a&gt;, &lt;a href="http://code.google.com/p/google-api-ruby-client/"&gt;Ruby&lt;/a&gt;, &lt;a href="http://code.google.com/p/google-api-php-client/"&gt;PHP&lt;/a&gt;, &lt;a href="http://code.google.com/p/google-api-objectivec-client/"&gt;Objective-C&lt;/a&gt;, and &lt;a href="http://code.google.com/p/google-api-dotnet-client/"&gt;.NET&lt;/a&gt;.  These libraries are all open source, so we’d love to have your feedback and help with them.&lt;br /&gt;
&lt;br /&gt;
&lt;strong style="font-size: 14px;"&gt;developers.google.com&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
You can find more information about the Google+ platform, including today’s new APIs to public data, at &lt;a href="http://developers.google.com/+"&gt;developers.google.com/+&lt;/a&gt; on our new &lt;a href="http://developers.google.com/"&gt;Google Developers site&lt;/a&gt;.  This site will be the place to go for access to &lt;a href="http://developers.google.com/+/api"&gt;documentation&lt;/a&gt;, &lt;a href="http://developers.google.com/+/terms"&gt;terms&lt;/a&gt; and &lt;a href="http://developers.google.com/+/policies"&gt;policies&lt;/a&gt;, &lt;a href="http://developers.google.com/+/discussions"&gt;discussions&lt;/a&gt; with other developers, tools that make development on the +Platform easier and more fun and, of course, the place where announcements concerning new releases will be made.&lt;br /&gt;
&lt;br /&gt;
Included in our &lt;a href="http://developers.google.com/+/policies"&gt;policies&lt;/a&gt; are three simple guidelines that we aspire to in our own products, and that we’d like all applications built on the Google+ platform to follow also: &lt;span style="font-style: italic;"&gt;put the user first, be transparent, and respect user data&lt;/span&gt;.  The goal behind these guidelines, as with all of the features and fine print, is to work together to build products that our users will love.&lt;br /&gt;
&lt;br /&gt;
&lt;strong style="font-size: 14px;"&gt;And now …&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
For all of you developers who have been asking for a Google+ API, this is the start. Experiment with it. Build apps on it. Give us your &lt;a href="http://developers.google.com/+/discussions"&gt;feedback&lt;/a&gt; and ideas. This is just the beginning; the Google+ platform will grow and we value your input as we move Google+ forward.
&lt;br /&gt;
&lt;br /&gt;
Follow the conversation on &lt;a href="https://plus.google.com/108189587050871927619/posts/afWN4etppXT"&gt;Google+&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;span class="post-author"&gt;Posted by &lt;a href="https://plus.google.com/108189587050871927619"&gt;Chris Chabot&lt;/a&gt;, Google+ Developer Relations&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6884131687395025558-4101126557143718531?l=googleplusplatform.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/GppBxyz/~4/LoNNvEG6-Qs" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/4101126557143718531?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/4101126557143718531?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/GppBxyz/~3/LoNNvEG6-Qs/getting-started-on-google-api.html" title="Getting Started on the Google+ API" /><author><name>Amy</name><uri>http://www.blogger.com/profile/12377319141980641278</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/-XV4uMT_Pn7g/TnI5T7BCmpI/AAAAAAAAAIw/CecR4H-s80k/s72-c/authorize.png" height="72" width="72" /><feedburner:origLink>http://googleplusplatform.blogspot.com/2011/09/getting-started-on-google-api.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUcHQXY4fip7ImA9WhdXEk0.&quot;"><id>tag:blogger.com,1999:blog-6884131687395025558.post-7196181962260177920</id><published>2011-08-24T10:22:00.000-07:00</published><updated>2011-08-24T10:30:30.836-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-08-24T10:30:30.836-07:00</app:edited><title>Share to Circles from the +1 Button</title><content type="html">The +1 button is a great way to recommend the pages you love on Google Search. But sometimes there’s content you want to share right away -- at least with certain circles of friends. That's why we'll be rolling out sharing on +1 button soon. Nuanced sharing is a critical part of the &lt;a href="http://googleblog.blogspot.com/2011/06/introducing-google-project-real-life.html"&gt;Google+ project&lt;/a&gt; -- this enhancement is a first step to exposing such sharing across the Web. 

&lt;p&gt;

Millions of sites are using the &lt;a href="https://code.google.com/apis/+1button/"&gt;+1 button&lt;/a&gt; to let visitors recommend their content right in Google search results. Now these sites will get an added benefit as +1 provides an easy way for visitors to share content into Google+. If you manage a website, your visitors can start a conversation about your site’s content with the circles who are most likely to enjoy it, expanding your audience while helping your content get noticed on Google Search at the same time.

&lt;p&gt; 

We know this is one of many scenarios for including sharing in developer applications.  Expect to see more integration opportunities in the future. Check out the &lt;a href="https://code.google.com/apis/+1button/#plus-snippet"&gt;+Snippets documentation&lt;/a&gt; to get familiar with the approach we’re taking to including rich content in the conversations your users start.

&lt;p&gt; 

You can preview this +1 button change&lt;/a&gt; by enrolling in the &lt;a href="http://www.google.com/+/learnmore/platform-preview/"&gt;Google+ Platform Preview&lt;/a&gt;. This preview channel allows you to test updates before they launch to all users on your site.

&lt;p&gt; 

Follow the conversation on &lt;a href="https://plus.google.com/u/1/116910345916105187261/posts/VBaSuWNPt2k"&gt;Google+&lt;/a&gt;.
&lt;p&gt; 
&lt;p&gt;
&lt;p&gt;

&lt;span class="post-author"&gt;Posted by &lt;a href="https://plus.google.com/u/1/116910345916105187261/posts"&gt;Philip Tucker&lt;/a&gt;&lt;/a&gt;, Google+ Software Engineer&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6884131687395025558-7196181962260177920?l=googleplusplatform.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/GppBxyz/~4/pNVoaRKodpw" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/7196181962260177920?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/7196181962260177920?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/GppBxyz/~3/pNVoaRKodpw/share-to-circles-from-1-button.html" title="Share to Circles from the +1 Button" /><author><name>Google+ Platform</name><uri>http://www.blogger.com/profile/16641336613709105503</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><feedburner:origLink>http://googleplusplatform.blogspot.com/2011/08/share-to-circles-from-1-button.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUUDQn08eSp7ImA9WhdQEEQ.&quot;"><id>tag:blogger.com,1999:blog-6884131687395025558.post-692072264379055717</id><published>2011-08-10T17:05:00.000-07:00</published><updated>2011-08-11T14:14:33.371-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-08-11T14:14:33.371-07:00</app:edited><title>Stepping Onto the Google+ Platform</title><content type="html">Welcome to the Google+ Platform blog!  Only 6 weeks ago we launched the Google+ project to fix sharing on the Web.  Since then, tens of thousands of you have &lt;a href="https://services.google.com/fb/forms/plusdevelopers/"&gt;expressed&lt;/a&gt; an overwhelming desire to build applications for Google+ -- we can’t wait to help you out.  This blog will be your official source of information and announcements on the Google+ platform.  Although we’re not ready to get your coding engines running, we do have some small updates to share as we prepare to open the gates.
&lt;br /&gt;
&lt;br /&gt;In today’s launch of  &lt;a href="http://googleblog.blogspot.com/2011/08/games-in-google-fun-that-fits-your.html"&gt;games on Google+&lt;/a&gt;, you can now see the first of many types of integrations that we hope to help you build. We chose to start with a small number of partners so that we could experiment, get the kinks out of our APIs, and get real end-user feedback before opening up to the world.
&lt;br /&gt;
&lt;br /&gt;Following today’s launch, I’d like to give you a preview of how we’re going to roll out the platform.  Because we want to provide both a great user experience and a great developer experience, we’re focusing on &lt;i&gt;quality before quantity&lt;/i&gt;.  We will continue to add new partners and new features in small steps, starting with today’s release of the games APIs to a small number of developers.  We’re keeping a close eye on feedback, and are eager to open up more access as soon as it’s ready.
&lt;br /&gt;
&lt;br /&gt;If you’re a developer interested in building for the Google+ platform, &lt;a href="https://services.google.com/fb/forms/plusdevelopers/"&gt;let us know&lt;/a&gt; and we’ll contact you when we have something for you to preview.  Just remember, like the &lt;a href="http://googleblog.blogspot.com/2011/06/introducing-google-project-real-life.html"&gt;rest of the Google+ project&lt;/a&gt; this is only the beginning, so stay tuned.&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Follow the conversation &lt;a href="https://plus.google.com/110563351377427897709/posts/AD9G1MfAFnj"&gt;here&lt;/a&gt; on Google+.&lt;/div&gt;&lt;div&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;span class="post-author"&gt;Posted by &lt;a href="https://plus.google.com/110563351377427897709/posts"&gt;David Glazer&lt;/a&gt;, Engineering Director&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6884131687395025558-692072264379055717?l=googleplusplatform.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/GppBxyz/~4/WrUVoPH2bhU" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/692072264379055717?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6884131687395025558/posts/default/692072264379055717?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/GppBxyz/~3/WrUVoPH2bhU/stepping-onto-google-platform.html" title="Stepping Onto the Google+ Platform" /><author><name>Google+ Platform</name><uri>http://www.blogger.com/profile/16641336613709105503</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><feedburner:origLink>http://googleplusplatform.blogspot.com/2011/08/stepping-onto-google-platform.html</feedburner:origLink></entry></feed>

