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 エンドポイント (この例ではhttp://namespace.com/app/myobject.htmlになります)で "og:*" メタ プロパティを介して定義する必要があります。

于 2013-01-16T18:12:15.870 に答える