Reputation: 601
I am working on a Meteor project. I have used accounts-password to create users and now I am trying to integrate with accounts-google plugin to provide OAuth support. Now the problem is if I use google oAuth login, and if I have already created an account with accounts-password with the same user email, its creating a duplicate account with new id. Is there a way to resolve this user accounts conflict ?
Upvotes: 0
Views: 299
Reputation: 181
Use link-accounts package. This one will allow you to link any additional services to one user without creating new users.
Upvotes: 0