我正在将 Google Drive 集成到我的应用程序中。
使用下面的链接,我可以连接到 Google 驱动器并能够下载文件并能够将文件上传到 Google 驱动器。
https://developers.google.com/drive/quickstart-android
下面是我用来将文件上传到云端硬盘的代码。
内联图像 2
使用上面的代码,我可以将文件上传到驱动器,并且从上图中的第 20 - 23 行,我得到了文件元数据,例如 downloadUrl、alternateUrl 和 webcontentLink。
现在我正在尝试使用 AlternateUrl 加载 WebView 并且页面正在加载,但它再次要求 Google 凭据。如何避免 webview 询问 Google Credential。以编程方式,如何在 webview 中登录 Google 帐户,而无需明确输入 Google 用户名和密码。我希望 webview 使用 AccountManager 或 Google Play Service api 选择帐户。
我参考了下面的链接,但无法完成我需要的操作。
http://nelenkov.blogspot.in/2012/11/sso-using-account-manager.html
在这方面的任何帮助将不胜感激。