Configure Facebook share dialog to show the default as “Friends' Timeline”

只谈情不闲聊 提交于 2019-12-24 06:38:40

问题


To open a regular share dialog like this one:

I use this following code:

FB.ui({
  method: 'share',
  href: 'https://www.happymood.co',
}, function(response){});

Now if I want the default option to show "On your Friends' Timeline" instead of "On your own Timeline", what changes must I make to this code?


回答1:


It´s not possible at all to define another default setting. You can check out the Facebook docs to see what parameters you can use: https://developers.facebook.com/docs/sharing/reference/share-dialog



来源:https://stackoverflow.com/questions/27874019/configure-facebook-share-dialog-to-show-the-default-as-friends-timeline

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!