I'm using account-facebook and fbgraph packages with meteor, my service configuration looks like this :
{ _id: 'zDCcCKawiBFrgLQ8Q',
service: 'facebook',
appId: edited,
secret: edited,
requestPermissions: [ 'user_friends' ] }
I get an access token at login and can get the email and public profile fine, but my permissions only include those permissions and not user_friends :
{ data:
[ { permission: 'email', status: 'granted' },
{ permission: 'public_profile', status: 'granted' } ] }
I thought user_friends was a given permission. What am I missing?
email
permission from, if you’re not even asking for that? – CBroe