是否有适用于 Android 的 Google Buzz API(实验室)的工作示例?

发布于 2024-11-08 23:55:52 字数 751 浏览 0 评论 0原文

新的 Google API 集可以在 Android 中与客户端库一起使用,并且可以使用

  1. OAuth1.0
  2. OAuth2.0
  3. 客户端身份验证 (android) 进行身份验证。

有人可以向我展示使用 GoogleAccountManager 类进行客户端身份验证的示例吗? 我无法让其中一个工作。

另外,当我使用 OAuth2.0 并使用像 buzz-sample:/// 这样的重定向 URL 并向清单添加一个意图过滤器时,例如

<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="buzz-sample" />
</intent-filter>

浏览器抛出错误 无效请求:无效参数 redirect_uri 的值:缺少 权威机构:buzz-sample:///

错误 400

任何帮助将不胜感激。

The new set of Google APIs could be used in Android with the Client Library and can be authenticated using

  1. OAuth1.0
  2. OAuth2.0
  3. Client Authentication (android).

Can someone show me an example of Client Authentication using GoogleAccountManager class?
I can't get one working.

Also when I use OAuth2.0 and use a redirect URL like buzz-sample:/// and add an intent filter to the Manifest like

<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="buzz-sample" />
</intent-filter>

It throws an error in the browser
invalid-request: Invalid parameter
value for redirect_uri: Missing
authority: buzz-sample:///

Error 400

Any help would be appreciated.

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

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

发布评论

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

评论(1

靖瑶 2024-11-15 23:55:52

这里有一个很好的例子,应该可以做你想做的事情。 http://code.google.com/p/google-api-java-client/source/browse/buzz-v1-json-oauth2-android-sample/?repo=samples

这是一个小代码片段演示了如何使用 AccountManager#getAuthToken 获取 AccessToken: http://chiarg.com/?p=429

There's a pretty good example here that should do what you want. http://code.google.com/p/google-api-java-client/source/browse/buzz-v1-json-oauth2-android-sample/?repo=samples

Here's a small code snippet demonstrates how to use AccountManager#getAuthToken to get an AccessToken: http://chiarg.com/?p=429

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