以前の返信ありがとうございます。
Facebookの共有は初めてです。アプリから Facebook に画像、説明、タイトルを共有しようとしています。を使用しfacebookConnector.postMessageOnWall
ていますが、コンテンツを説明付きで共有したいと考えています。誰でも私を助けることができますか?1 つの投稿ですべてのコンテンツを共有するにはどうすればよいですか?
前もって感謝します。
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");
}
}`