0

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

1 回答 1

1

image/title/description 都是 OG 对象的属性,不能通过参数指定给请求。它们必须通过 url 端点的“og:*”元属性定义(在您的示例中为http://namespace.com/app/myobject.html)。

于 2013-01-16T18:12:15.870 回答