是否有适用于 Android 的 Google Buzz API(实验室)的工作示例?
新的 Google API 集可以在 Android 中与客户端库一起使用,并且可以使用
- OAuth1.0
- OAuth2.0
- 客户端身份验证 (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
- OAuth1.0
- OAuth2.0
- 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里有一个很好的例子,应该可以做你想做的事情。 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