views:

19

answers:

1

With Twitter you can use http://twitter.com/home?status=sometext to twitter something. Is there a similar possibility for Googlebuzz?

+1  A: 

The Post to Google Buzz API is pretty easy to use. You simply construct the URI like this:

http://www.google.com/buzz/post?message={your_message}&url={your_url}

There's also a JavaScript API that generates the buttons for you:

<a href="http://www.google.com/buzz/post"
  class="google-buzz-button" title="Google Buzz"
  data-message="{your_message}"
  data-url="{your_url}"
  data-locale="en"
  data-button-style="normal-count"></a>
<script type="text/javascript" src="http://www.google.com/buzz/api/button.js"&gt;
</script>
Bob Aman

related questions