I am using javascript SDK to implement feed functionality. Here is my problem, if user is logged-in and clicked on share button facebook asking log-in credentials in IE8 . In IE9 working fine
i am using this code
FB.init({appId: "416595358373189",show_error:true, status: true, cookie: true});
function postToFeed() {
// calling the API ...
var obj = {
method: 'feed',
link: 'https://developers.facebook.com/docs/reference/dialogs/',
picture: 'http://fbrell.com/f8.jpg',
name: 'Facebook Dialogs',
caption: 'Reference Documentation',
description: 'Using Dialogs to interact with users.'
};
FB.ui(obj, callback);
}
function callback(response)
{
}
c#and thejavaSDK in javascript? think not? – Nanne Jun 8 '12 at 10:13