Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
Merge pull request #384 from igorauad/facebook2.0
Browse files Browse the repository at this point in the history
Remove username from facebook strategy
  • Loading branch information
ilanbiala committed Feb 1, 2015
2 parents 90c9ddb + 9929f1b commit 1e450b4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions modules/users/server/config/strategies/facebook.js
Expand Up @@ -14,7 +14,7 @@ module.exports = function(config) {
clientID: config.facebook.clientID,
clientSecret: config.facebook.clientSecret,
callbackURL: config.facebook.callbackURL,
profileFields: ['id', 'name', 'displayName', 'email', 'username', 'photos'],
profileFields: ['id', 'name', 'displayName', 'emails', 'photos'],
passReqToCallback: true
},
function(req, accessToken, refreshToken, profile, done) {
Expand All @@ -29,7 +29,6 @@ module.exports = function(config) {
lastName: profile.name.familyName,
displayName: profile.displayName,
email: profile.emails[0].value,
username: profile.username,
profileImageURL: (profile.photos && profile.photos.length) ? profile.photos[0].value : undefined,
provider: 'facebook',
providerIdentifierField: 'id',
Expand Down

0 comments on commit 1e450b4

Please sign in to comment.