Facebook のタイムラインにグラフ オブジェクトを投稿しようとしていますが、タイトルと説明が表示されません。これは以下のコードです。助言がありますか ?
Bundle postParams = new Bundle();
postParams.putString("offer", "http://namespace.com/app/myobject.html");
postParams.putBoolean("fb:explicitly_shared", true);
postParams.putString("image", _offer.getImgpath());
postParams.putString("title", _offer.getName());
postParams.putString("description",_offer.getDescription());
Request request = new Request(session, "me/namespace:share", postParams,
HttpMethod.POST, callback);
RequestAsyncTask task = new RequestAsyncTask(request);
task.execute();