Android 上有类似 RPX 的库吗?
有人知道有一个库可以“直接插入”吗?它允许您轻松地将 Android 应用程序中的多个身份验证选项组合到 Facebook、OpenID、Twitter 等服务中,就像 RPX 一样?
Does someone know of a library that is fairly "drop in" and allows you to easily put together multiple authentication options in an Android app to services like Facebook, OpenID, Twitter, etc. much like RPX does?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 res 文件夹中制作一个嵌入 RPX 的小型 HTML 页面(就像真实的网站一样),并使用 WebView 渲染它。无论如何,您都需要 WebView,因为作为 OpenID 和 OpenAuth 的要求,一切都需要您访问他们的站点。所以最后,您需要加载一个 WebView 来向用户显示该屏幕。
Make a little HTML page with RPX embedded inside it (like a real site) inside your res folder and render it using WebView. You would need WebView anyways since as a requirement of OpenID and OpenAuth and everything needs you to go to their site. So in the end, you would need to load up a WebView to show the user that screen anyways.