我正在使用面向Android的Facebook SDK 3.0。
如何制作自定义喜欢按钮
Request request = new Request(session, page_id + "/likes", null, HttpMethod.POST, new Callback()
{
@Override
public void onCompleted(Response response)
{
Log.i(DEBUG_TAG, response.toString());
// TODO Auto-generated method stub
if (response.getGraphObject() != null)
{
//Log.i(DEBUG_TAG, response.toString());
}
}
});
RequestAsyncTask task = new RequestAsyncTask(request);
task.execute();
page_id = 417732304946490
有OAuthException (#3)应用程序无法进行此API调用。
无法在app中使用吗?
答案 0 :(得分:3)
Facebook图形API不提供喜欢facebook页面的功能。相反,您可以使用您的网页网址打开网页视图,以便您可以登录并喜欢您的网页。
// To open webview
String url = "your page URL";
Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivity(i);