0

嗨朋友们我有一个问题,如何从我的应用程序中喜欢 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
  }
}
4

1 回答 1

3

Pages 的 Facebook 文档已更新并且是最新的(请参阅https://developers.facebook.com/docs/reference/api/page/)。即使您可以阅读点赞计数信息,您也无法通过 Graph API 点赞页面。它没有API,你可以试试这个。 就像来自应用程序本身的 facebook 中的 android 应用程序页面

于 2012-10-03T05:35:21.843 回答