我正在使用javascript SDK来实现Feed功能。这是我的问题,如果用户登录并点击分享按钮facebook询问IE8中的登录凭据。在IE9中工作正常
我正在使用此代码
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)
{
}