android 获取 picasa 图片 URL
我们正在开发一个应用程序,它需要/想要像图库应用程序一样运行,因为它显示来自 SD 卡的图像以及来自 picasa 的图像。
我意识到我可以从用户那里获取凭据/使用 oauth/无论什么,然后访问 picasa Web 服务 API,等等。但是,我想知道是否有任何捷径。要求用户每次启动该应用程序时都必须登录 picasa,这确实令人沮丧。甚至一次索要信用证都会让人担心。
有什么想法吗?
We are working on an application that needs / wants to act like the stock Gallery app in that it shows images from the SD card, as well as images from picasa.
I realize I could obtain credentials from the user / use oauth / whatever, then access the picasa web service API, and so on. however, I'm wondering if there's any shortcut. requiring the user to log in to picasa each time they fire up the app is a real downer. even asking for the creds one time makes people worry.
any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
AccountManager
API 请求使用 Google 帐户的权限。有关详细信息,请参阅我应该使用 Android AccountManager 做什么?。You can request permission to use the Google account using the
AccountManager
API. See What should I use Android AccountManager for? for more details on this.