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 can publish the field you want:
Meteor.publish( null, function() { Meteor.users.find({}, {fields: {profile: 1, username: 1, ...}}) }