gpt4 book ai didi

google-smartlockpasswords - 仅将Google智能锁添加到网站

转载 作者:行者123 更新时间:2023-12-04 03:36:31 24 4
gpt4 key购买 nike

网站上的Google Smart Lock

我刚刚访问了Pinterest,它具有一个很酷的功能。当我访问该网站时,Chrome会以某种方式“看到”我拥有一个帐户。而且,它不会主动等待,而是会主动通知我:您在这里确实有一个帐户:您要单击一下登录吗?是/否

https://support.google.com/accounts/answer/6160273?hl=en

Question: I see a lot of json code examples for apps. But how can we proactively add this to a website that a user has a stored uname/passwd for?



谢谢,肖恩

最佳答案

这是一篇介绍如何向您的网站添加Smart Lock登录的文章:https://developers.google.com/web/updates/2016/04/credential-management-api

基本上,像这样向(https)网站添加一些代码(您可以在JavaScript控制台中尝试以下代码:

navigator.credentials.get({  
password: true, // `true` to obtain password credentials
}).then(function(cred) {
// continuation which submits the credential and signs the user in
...

这是一个完整的示例网站: https://credential-management-sample.appspot.com/

一旦用户使用了该凭证,或者您已使用 navigator.credentials.store()保存了该凭证,则将来可以自动检索该凭证(无需用户单击)。

有关此问题的更多信息,请从Google I/O中 checkout this talk(有关证书管理API的详细信息,大约在8分钟左右开始)。

关于google-smartlockpasswords - 仅将Google智能锁添加到网站,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39528043/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com