最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

android - Credential Manager doesn't popup on web after saving credential from related application - Stack Overflow

programmeradmin0浏览0评论

I'm trying to share credential between my application and my website.

I followed this, to ask the user to save his login / password

val createPasswordRequest = CreatePasswordRequest(
      id = currentUser.email,
      password = currentUser.password,
)

try {
    val result = credentialManager.createCredential(
          context ?: return@launch,
          createPasswordRequest
    )
                             
    hintManager.saveGooglePasswordSavedInCloud()
} catch (e: CreateCredentialException) {
   e.printStackTrace()
}

And did the configuration, for the web

Everything is done, even uploaded a version test on the store. The Play Console say that credential sharing is turned on. App Links Assistant on Android Studio say everything is fine. But when I save login / password with the CredentialManager on my app, and then go on the website. It say that no credential are linked.

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论