javascript - if user is already logged-in and clicked on share button in wesite facebook asking log-in credentials in IE8 ..! -
i using javascript sdk implement feed functionality. here problem, if user logged-in , clicked on share button facebook asking log-in credentials in ie8 . in ie9 working fine
i using code
fb.init({appid: "416595358373189",show_error:true, status: true, cookie: true}); function posttofeed() { // calling 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 interact users.' }; fb.ui(obj, callback); } function callback(response) { }
Comments
Post a Comment