您正在使用 javascript 在Facebook上分享。
当我第一次登录我的应用程序时,在第一次使用此代码登录Facebook时,它完美无缺。我可以多次共享。
问题从这里开始
如果我从应用程序退出并再次登录,那么如果我点击分享按钮,则不会打开弹出窗口。
如果我错了,请检查我的代码并纠正我。
以下是我的代码。
function share(){
var share = {
method: 'feed',
name: 'Real Prize Arcade',
link: 'http://india-webdev.com/arcade/www/RPA.mp4',
picture: 'http://india-webdev.com/arcade/www/images/arcade.png',
description: 'Real Prize Arcade',
source: 'https://www.youtube.com/v/1CE6W5BubQo'
};
FB.ui(share, function(response) {
if(response && response.post_id !== undefined) {
alert('Successfully Shared');
}
});
}