Guest User

Facebook Return Proxy Email

a guest
Jan 9th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.04 KB | None | 0 0
  1.  
  2.  
  3. ********************
  4. Facebook Return Proxy Email
  5. http://urlin.us/bzc1h
  6. (Copy & Paste link)
  7. ********************
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45. adolfopeccin referenced this issue Sep 2, 2015 Closed Still FB not returning email for some users #216 . So when I was trying to login via facebook the email field was coming as nil. When you email Facebook one of their customer service agents sitting in one of their call centers, likely located in Phoenix, AZ or India, will get your message in their inbox and reply to you on a first come, first serve basis. Those concerned about their privacy should enable this option, but be warned that it may break the functionality of a lot of websites. Frustrating :( . Is there perhaps a user setting that allows them to not send any email address? . Facebook Customer Service EmailEmail Facebook customer service help at this email address for the fastest reply. :p I was just responding to. .. dannypule commented Sep 16, 2015 If you're using the Javascript SDK you can define these fields and get the email and picture using the '/me' parameter like this: '/me?fields=firstname, lastname, picture, email' Full function would be: FB.api('/me?fields=firstname, lastname, picture, email', function(response) { console.log(response); document.getElementById('status').innerHTML = 'Thanks for logging in, ' + response.firstname + '!'; }); 1 . nimitzshah commented Aug 24, 2015 Thanks brentmulligan! . I am not able to log into my Facebook account. Anyone have any ideas how to fix this? facebook google-chrome login shareimprove this question edited May 23 '17 at 11:54 Communityf 11 asked May 25 '11 at 13:30 Jaffer 4451719 add a comment 6 Answers 6 active oldest votes up vote 10 down vote I got a similar call to FB.login() to close the dialog box by changing onclick="dologin()" to onclick="dologin(); return false;" shareimprove this answer edited Jul 3 '13 at 18:50 sakibmoon 1,65831529 answered Apr 17 '12 at 0:34 Joe Rantala 10112 1 or adding event.preventDefault() at the first line of doLogin() –Raptor Aug 6 '15 at 8:32 Raptor answer is the right one. aanjna commented Sep 24, 2015 Hi here I didn't received FacebookStrategy.php file in my src/Facebook SDK files the code creates problem by trying the given options too please have a look on my fbconfig.php file to retrive user's fb data getSessionFromRedirect(); } catch( FacebookRequestException $ex ) { // When Facebook returns an error } catch( Exception $ex ) { // When validation fails or other local issues } // see if we have a session if ( isset( $session ) ) { // graph api request for user data $request = new FacebookRequest( $session, 'GET', '/me?field= email, name, id' ); $response = $request->execute(); // get response $graphObject = $response->getGraphObject(); $fbid = $graphObject->getProperty('id'); // To Get Facebook ID $fbfullname = $graphObject->getProperty('name'); // To Get Facebook full name $femail = $graphObject->getProperty('email'); // To Get Facebook email ID /* ---- Session Variables -----*/ $SESSION['FBID'] = $fbid; $SESSION['FULLNAME'] = $fbfullname; $SESSION['EMAIL'] = $femail; /* ---- header location after session ----*/ checkuser($fbid,$fbfullname,$femail); header("Location: index.php"); } else { $loginUrl = $helper->getLoginUrl(array('scope' => 'email')); header("Location: ".$loginUrl); } ?> . entrecoder commented Oct 13, 2015 Figured this out. By clicking or navigating the site, you agree to allow our collection of information on and off Facebook through cookies. 8 items not shown View more . It's really that simple. borama commented Nov 23, 2012 I experience the same problem, currently in cca 2% of user registrations. The way they work means they can be difficult for the proxy to handle. See photos and updates from friends in News Feed. No refererNo refererThe referer header (yes, it's supposed to be spelled incorrectly!) tells the remote website the previous page you were on that linked you to where you are now, or the page that you're currently on for requested resources on the current page. Stack Overflow Questions Developer Jobs Tags Users current community help chat Stack Overflow Meta Stack Overflow your communities Sign up or log in to customize your list. alepee commented Jul 16, 2013 Same here for about 2% of users over 12k . Collaborator simi commented Nov 7, 2013 This is definitely platform problem as Maxwell2022 mentioned. Not the answer you're looking for? Browse other questions tagged facebook google-chrome login or ask your own question. shahidaali commented May 25, 2016 lucianoinso you are welcome.! . I believe the phone number is then encrypted and that becomes what the email address would normally be. If it's either of those then it prompts the user to supply their email address. $.browser.chrome = /chrome/.test(navigator.userAgent.toLowerCase()); if ($.browser.chrome $.browser.msie) { FB.XD.origin = window.location.protocol + "//" + document.domain + "/" + FB.guid(); FB.XD.Flash.init(); FB.XD.transport = "flash"; } else if ($.browser.opera) { FB.XD.transport = "fragment"; FB.XD.Fragment.channelUrl = window.location.protocol + "//" + window.location.host + "/"; } shareimprove this answer edited Jul 3 '13 at 18:53 sakibmoon 1,65831529 answered Dec 15 '11 at 6:17 Jaffer 4451719 add a comment up vote 1 down vote I've been experiencing the same issue in IE9, and it seemed to stem from upgrading to Flash Player 10. !Facebook needs to approve your request for additional permissions Default data provided by SDK includes: email, public profile, userfriends . Then I realized that Facebook has an option that allows the user to "hide" his or her email, leaving it private, and when the user does it, it is not possible to get the email. When I didn't add profile fields I would sometimes receive a nil email. toobulkeh commented Jan 10, 2015 That's ONE reason, but not the only reason. The answers suggested already did not work for me and I'd lost hope in trying to fix it since finding an open bug at Facebook covering it. This is generally required for logging in to websites and storing your specific preferences 5a02188284
Add Comment
Please, Sign In to add comment