嗨朋友们我有一个问题,如何从我的应用程序中喜欢 Facebook 中的页面?我可以使用页面 id 检索 Facebook 页面的所有信息,也可以对页面墙发表评论,我的要求是能够在 Facebook 中喜欢我无法做到的页面..??。我已经通过图形 API 但无法找到解决方案..??
我试过这段代码
dialog = ProgressDialog.show(MyApp.this, "",
"please wait..", true, true);
Bundle params = new Bundle();
mAsyncRunner.request("PAGE_ID/likes",params,"POST",new UploadListener(), null);
public class UploadListener implements RequestListener {
@Override
public void onComplete(String response, Object state) {
System.out.println("THE RES IS : "+response);
dialog.dismiss();
}
一旦我运行此代码,它就会给出错误 THE RES IS:
{
"error":
{
"message": "(#3) Application does not have the capability to make this API call.",
"type": "OAuthException",
"code": 3
}
}