I want to develop a page tab application in Facebook
Till now I have always developed canvas page apps using asp.net so this will be my first page tab app
And I am stuck on getting authentication request for user info and friend list
I have used Facebook graph toolkit dll developed by computerbeacon but it doesn't solve my problem for page tab
Any c# or JavaScript source code can help me I can use jssdk or C#sdk but I just want to an example or link that I can learn how this is possible in page tab apps
I put this code to my page but it says FB is not defined if I put connect.Facebook, all.js to the head section this time it says fb.login called before fb.init and it dowsnt show the permission window in both ways
<body>
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function () {
FB.init({
appId: '396868406993330', // App ID
status: true, // check login status
cookie: true, // enable cookies to allow the server to access the session
xfbml: true // parse XFBML
});
// Additional initialization code here
};
// 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>
<form id="form1" runat="server">
<div>
hello world
<script>
FB.login(function (response) {
if (response.authResponse) {
console.log('Welcome! Fetching your information.... ');
FB.api('/me', function (response) {
console.log('Good to see you, ' + response.name + '.');
});
} else {
console.log('User cancelled login or did not fully authorize.');
}
}, { scope: 'email,user_likes' });
</script>
</div>
</form>
</body>