感谢之前的回复,
我是Facebook新手分享的新手。我正在尝试将我的图像,描述和标题从我的应用程序分享到Facebook。我正在使用facebookConnector.postMessageOnWall
,但我想与描述分享我的内容。谁能帮我?如何在一篇文章中分享所有内容?
提前致谢。
答案 0 :(得分:0)
在l`private final void postFacebook(){
String imageurl = "www.xyz.com/123.jpg";
String caption="your caption", description="Your description", name ="your name", linkurl=" your link";
Bundle b = new Bundle();
b.putString("picture", imageurl);
b.putString("caption",caption);
b.putString("description",description );
b.putString("name",name);
b.putString("link",linkurl);
try {
facebookConnector.getFacebook().request("/me/feed", b, "POST");
//strRet = fb.request("/me/feed",b,"POST");
}catch(Exception e){
Log.v(TAG,"Error in posting");
}
}`