Googlebuzz 网址,用于发出类似于 Twitter 的文本

发布于 2024-08-23 02:23:28 字数 183 浏览 5 评论 0原文

使用 Twitter,您可以使用 http://twitter.com/home?status=sometext 发送 Twitter 信息某物。 Googlebuzz 是否也有类似的可能性?

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

少钕鈤記 2024-08-30 02:23:28

发布到 Google Buzz API 非常易于使用。您只需像这样构造 URI:

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

还有一个 JavaScript API 可以生成按钮为你:

<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>

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>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文