The code below renders a form with a "broken image" icon and "undefined" beneath. I am using it while my browser is signed in to Facebook.
What do I need to get a working "sign in with Facebook" message and let the system register "Facebook said the user signed in?"
<table class="table-form">
<tr>
<td colspan="2">
<div id="fb-root"></div>
<script src="//connect.facebook.net/en_US/all.js"></script>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '269802683049955', // App ID
// channelUrl : 'html', // Channel File
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
FB.api('/me', function(user) {
if (user) {
var image = document.getElementById('image');
image.src = 'https://graph.facebook.com/' + user.id + '/picture';
var name = document.getElementById('name');
name.innerHTML = user.name
}
});
};
// Load the SDK Asynchronously
(function(d){
var js, id = 'facebook-jssdk', ref =
d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));
</script>
<div align="center">
<img id="image"/>
<div id="name"></div>
</div>
</td>
</tr>
<tr><th><label for="id_email">Email:</label></th><td><input type="text" name="email" id="id_email" /></td></tr>
<tr><th><label for="id_password">Password:</label></th><td><input type="password" name="password" id="id_password" /><input type="hidden" name="redirect_to" id="id_redirect_to" /></td></tr>
--EDIT in response to Igy's helpful question--
What I am doing, perhaps based on the wrong code, is to create a "Log in with Facebook" button which, when clicked, open presumably a popup window asking for their Facebook credentials if they are not authenticated, and whether or not authenticated request the permissions desired for the app. And then ping us back with the user's email or username on consent.
user? – Igy Jan 14 at 19:47