我正在尝试在我的 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();