Guest User

Untitled

a guest
Apr 21st, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. const retrievePromise = googleyolo.retrieve({
  2.  
  3. supportedAuthMethods: [
  4. "https://accounts.google.com",
  5. "googleyolo://id-and-password"
  6. ],
  7.  
  8. supportedIdTokenProviders: [
  9. {
  10. uri: "https://accounts.google.com",
  11. clientId: "YOUR_GOOGLE_CLIENT_ID" // replaced with clientId
  12. }
  13. ]
  14. });
  15.  
  16. retrievePromise.then((credential) => {}); //-> THIS IS NEVER GETTING CALLED
Add Comment
Please, Sign In to add comment