Googlebuzz url to buzz a text similar to twitter
With Twitter you can use http://twitter.com/home开发者_运维知识库?status=sometext to twitter something. Is there a similar possibility for Googlebuzz?
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">
</script>
精彩评论