google-smartlockpasswords

How to hint Google Smart Lock to use a specific input field as the username in a website

社会主义新天地 提交于 2019-12-05 07:34:35
I've been trying to search for some documentation on how to hint Google Smart Lock for Chrome to use a specific input field as the one associated with the username without any luck. For the password it works perfectly as it is using type="password" but when it comes down to the username in a multi field form, where the username is not specified before the password or not as the first field in the form it picks another of the fields in the form as the username. Does anyone have any clue on how to hint Google Smart Lock to use a specific input field as the username? Google smart lock is a build

Google Smart Lock vs Credential Management API

天大地大妈咪最大 提交于 2019-12-05 02:24:20
问题 I want to implement frictionless sign in process for my web app. After some searching, I have found that there are two solutions available : Google Smart Lock. Credential Managment API. My question is , What is the difference between the two API's (if any) and what are the possible use cases for both of these. From what I have understood, both allow us to save account related info. But the advantage with smart lock is, that saved credentials can be used in corresponding android apps as well.

Google Smart Lock vs Credential Management API

孤人 提交于 2019-12-03 20:19:33
I want to implement frictionless sign in process for my web app. After some searching, I have found that there are two solutions available : Google Smart Lock . Credential Managment API . My question is , What is the difference between the two API's (if any) and what are the possible use cases for both of these. From what I have understood, both allow us to save account related info. But the advantage with smart lock is, that saved credentials can be used in corresponding android apps as well. Thanks ! Note : I intend to support login from multiple sources (google, facebook, linkedin etc.) ,

Play Services Hint Request cannot display phone numbers when requested

二次信任 提交于 2019-12-03 11:58:55
问题 When using the code from google's sms retriever api to first grab the device's phone number, the dialog is shown with a loading spinner, then quickly disappears. In onActivityResult, the resultCode is 1002 and the intent is empty. No documentation for this error code exists. The exact code I'm using is email.setOnClickListener(v -> { HintRequest hintRequest = new HintRequest.Builder().setHintPickerConfig(new CredentialPickerConfig.Builder().setPrompt(0).build())

Password from associated website not retrieved in app via Smart Lock API

我们两清 提交于 2019-12-02 19:34:31
问题 I've associated my https website and app to share stored credentials and received confirmation that the association is live, but when I call the CredentialsApi.request() method in my app, I am not able to retrieve any credentials from my website that were saved with the Chrome password manager. How can I fix this? 回答1: After submitting the data to associate your app and https website, and receiving confirmation that the association is live, here are some things to check: if you've just saved

Password from associated website not retrieved in app via Smart Lock API

*爱你&永不变心* 提交于 2019-12-02 08:16:31
I've associated my https website and app to share stored credentials and received confirmation that the association is live, but when I call the CredentialsApi.request() method in my app, I am not able to retrieve any credentials from my website that were saved with the Chrome password manager. How can I fix this? Steven Soneff After submitting the data to associate your app and https website , and receiving confirmation that the association is live, here are some things to check: if you've just saved a new credential, wait a couple minutes for synchronization between Chrome and Android and

Store Facebook Credential in Android for Google Smart Lock Password

坚强是说给别人听的谎言 提交于 2019-12-01 16:49:36
Store Facebook Credential in Google Smart Lock Password I was able to store basic username/password credentials in Smart Lock Password. There is plenty of documentation and examples for Google credentials: GoogleSignInAccount gsa = signInResult.getSignInAccount(); Credential credential = new Credential.Builder(gsa.getEmail()) .setAccountType(IdentityProviders.GOOGLE) .setName(gsa.getDisplayName()) .setProfilePictureUri(gsa.getPhotoUrl()) .build(); But so far, I was unable to store a Facebook credential. It should be something similar. But what exactly? Or is it something completely different

Store Facebook Credential in Android for Google Smart Lock Password

允我心安 提交于 2019-12-01 15:59:05
问题 Store Facebook Credential in Google Smart Lock Password I was able to store basic username/password credentials in Smart Lock Password. There is plenty of documentation and examples for Google credentials: GoogleSignInAccount gsa = signInResult.getSignInAccount(); Credential credential = new Credential.Builder(gsa.getEmail()) .setAccountType(IdentityProviders.GOOGLE) .setName(gsa.getDisplayName()) .setProfilePictureUri(gsa.getPhotoUrl()) .build(); But so far, I was unable to store a Facebook

Smart Lock multi account resolution always showing up

徘徊边缘 提交于 2019-12-01 10:49:23
问题 I'm implementing Google Smart Lock into my app. I've got it logging the user in automatically with a single account and it works well. However, once I add a second account to the mix it always shows the resolution dialog to pick which account I want. This continues to show even after I have selected and account and restarted the app. This dialog shouldn't show anymore once I have selected the account I want smart lock to use, so what are some possible reasons for it still showing? -Thank you

Testing Smart Lock for Passwords app integration

纵饮孤独 提交于 2019-11-27 10:38:38
问题 I’ve implemented Smart Lock for Passwords in my app. What are some common scenarios and UX flows that I should test out? 回答1: Here’s a guide to test Smart Lock for Passwords functionality in an app. If you have a website, associate your app and site to test those cases. Also check out the developer integration guide. Check what's saved for the current Google Account at passwords.google.com. Entries are shown under the website domain or Android package/app name, delete any entries to start