how do i share a post on facebook using restfb

霸气de小男生 提交于 2020-02-27 03:15:55

问题


this is my java code using resfb lib to post something on my facebook groups feed:

FacebookClient fb=new DefaultFacebookClient(token);
FacebookType message=fb.publish(pid+"/feed",FacebookType.class,Parameter.with("message", description));

now what do i do to share posted article?

thanks a lot for your help!


回答1:


Graph API doesn't provide an explicit share operation, but you can create a post which is a link to another post, which should be displayed as a share. Something like this:

fb.publish("me/feed", FacebookType.class, Parameter.with("link", "https://www.facebook.com/10152237769155733"));


来源:https://stackoverflow.com/questions/22177660/how-do-i-share-a-post-on-facebook-using-restfb

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