I want the Facebook accessToken that is stored in my user\'s document on the client. Following the meteor documentation, I should just add a new publish call.
In
you should use "fields" keyword
Meteor.users.find({ _id: this.userId },
{ fields: { the-extra-fields-that-you-want-go-here: 1 } }
);
http://docs.meteor.com/#fieldspecifiers
You can publish the field you want:
Meteor.publish( null, function() {
Meteor.users.find({}, {fields: {profile: 1, username: 1, ...}})
}