Is that possible to save data user from Auth0 Social(e.g facebook) to Database(mysql) after login via facebook(auth0 social)? (using ionic framework) -
i've used auth0 service ionic project create login page , it's working own-database connection. want save data social(e.g facebook) own-database. possible? i've tried using social login in auth0, profile data saved on auth0 account. need data saved in own-database.
yes, can in rule. taken post @ ask.auth0.com:
function (user, context, callback) { if (context.connectionstrategy === 'connection') { // store user data in database } callback(null, context, callback); }
Comments
Post a Comment