I have a screen where users can select Facebook friends. After submitting the form, I request a profile object from Facebook with certain fields (for example: https://graph.facebook.com/some_id?fields=id,name,religion&access_token=xxx ).
When I request my own profile data with the religion field in the query, I see that the value is correctly included in the result. When I request my friends' profile information, the answer does not include their religion, although I can see it by directly viewing their profile page.
I made sure that I am requesting user_religion_politics and friends_religion_politics before making this call (and using the updated access token). What's happening?
source share