我有一个"分享"我的应用程序中的按钮并非如此工作。
我按照以下步骤操作:
https://developers.facebook.com/docs/sharing/reference/share-dialog
我要分享的网址是:
https://www.facebook.com/RestauranteViena/app_216009158592464
所以,我最终得到了这段代码:
$('#share_button').click(function(){
FB.ui({
method: 'share',
href: 'https://www.facebook.com/RestauranteViena/app_216009158592464',
});
});
不幸的是,Facebook共享的URL不是App URL而是PAGE URL。
重定向我的网址是:
https://www.facebook.com/RestauranteViena?fb_action_ids=711183428925062&fb_action_types=og.shares&fb_source=aggregation&fb_aggregation_id=288381481237582
有没有人走过这个?