I'm using the new Facebook Sdk 3.0 for Android and I'm trying to make a post to the user wall using the new Request of the Graph Api. Now, I'm able to make the post, but on the Facebook page it shows as if I shared a link (and I don't want that). My final goal is to make a post that looks like that: https://docs.google.com/drawings/d/1ARTDj6qtSx4-qZQ0ZU1sZZppEMYMti8zwFLTZneSm2o/edit
and when you click it you go to the Facebook app. My code of the request:
Bundle params = new Bundle();
params.putString("name", title);
params.putString("caption", caption);
params.putString("description", description);
params.putString("picture", imageURL);
params.putString("link", FACEBOOK_APP_URL);
Request request = new Request(Session.getActiveSession(), "me/feed",
params, HttpMethod.POST, new Callback() {
@Override
public void onCompleted(Response response) {
// TODO Auto-generated method stub
}
});
RequestAsyncTask task = new RequestAsyncTask(request);
task.execute();
At this point the code above is posting the correct image and text, but on the click you are transferred to the image url and on the post itself the title is "Alexander shared a link" and so on.
Thanks in advance