Iam using following method to make a wall post using facebook sdk 3+ . After posting the story, I noticed that there is no complete content posted.About Half of it is missing. Is there any workaround for this, or do I have to go for another method?
public void postToWall() {
// post on user's wall.
Bundle params = new Bundle();
params.putString("name", "Title");
params.putString("description", fbText);// The contents here are missing.
facebook.dialog(this, "feed",params, new DialogListener() {
@Override
public void onFacebookError(FacebookError e) {
}
@Override
public void onError(DialogError e) {
}
@Override
public void onComplete(Bundle values) {
}
@Override
public void onCancel() {
}
});
}