我有facebook对象id = 235563339900978 (你可以在这里查看 - http://graph.facebook.com/235563339900978)
我有这样的代码
Bundle params = new Bundle();
params.putString("object", "http://samples.ogp.me/235563339900978");
// DO PUBLISH
Request request = new Request(
Session.getActiveSession(),
"me/og.likes",
params,
HttpMethod.POST
);
return request.executeAndWait();
我运行此代码并从Facebook获得肯定答案 响应代码200。 此外,如果我再次运行该代码我得到这样的答案
errorMessage: (#3501) User is already associated to the object type, website, on a unique action type Like. Original Action ID: 1400818803525892}
所以我想就像是成功的
但我根本无法在时间轴上看到它
我确实喜欢,但它没有出现在时间轴上,
尽管我看到了积极的回应
代码为200。
为什么?