我知道这个问题已经被问过很多次了。
在我的应用程序中,我还想集成 Facebook like 按钮,经过大量研发后,我发现了以下链接
https://developers.facebook.com/docs/reference/opengraph/action-type/og.likes
我在我的应用程序中使用以下代码,
Bundle params = new Bundle();
params.putString("object", "http://samples.ogp.me/226075010839791");
Request request = new Request(
Session.getActiveSession(),
"me/og.likes",
params,
HttpMethod.POST
);
Response response = request.executeAndWait();
// handle the response
但是当我点击喜欢按钮时,什么都没有发生。
请大家指导我如何使用上面的代码。
还有一件事需要额外的权限来实现上述代码“权限:publish_actions”。如何获得此权限?