neo
unread,Jun 13, 2012, 7:08:53 AM6/13/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to everyauth
Hi.
I been using everyauth in app to login into Facebook using everyauth.
I'm able to login into Facebook and retrieve basic user data like
name, DOB, email address etc.
Now i have a requirement to capture more than basic user data like
Facebook inbox messages
friends list etc
i wonder if i would be able to do using everyauth with in node.js . I
kind of assumed it would be somewhere in code where you create user
but not sure...
everyauth
.facebook
.appId(conf.fb.appId)
.appSecret(conf.fb.appSecret)
.findOrCreateUser( function (session, accessToken,
accessTokenExtra, fbUserMetadata) {
return usersByFbId[fbUserMetadata.id] ||
(usersByFbId[fbUserMetadata.id] = addUser('facebook',
fbUserMetadata));
})
.redirectPath('/');
would appreciate any help?
Thanks