I\'m using facebook sdk v4 and i can\'t seem to get the EMAIL ADDRESS. Here is my code. I have searched each and every link on internet and tried every thing. Also tried dif
Have a look at my answer here:
You need to specify each field you want returned from the Graph API starting with v2.4, e.g.
$request = new FacebookRequest($sess,'GET','/me?fields=id,name,email');
It's all in the Facebook docs.