0

看完长标题后,这是我目前的状态:

  1. 我已成功登录 Facebook(授权方法返回完成)。
  2. 我已经实现了一个异步任务来获取“”的数据——一切正常。
  3. 我试图改变对me?fields=namegender的调用,我得到一个错误,比如 -
    "An active access token must be used to query information about the current user."

我试着用谷歌搜索它并阅读它,但因为人们用数百万种语言实现他们的代码,我没能找到解决我问题的好方法。

请指教!盎司

4

1 回答 1

1

为了解决这个问题,我改变了处理 facebook 对象的方式:而不是发送给我?fields=name,gender

我改为这段代码:

        Bundle bundle = new Bundle();
        bundle.putString("fields", "name, gender, picture");
        String jsonString = params[0].request("me", bundle);
于 2012-09-03T11:20:18.547 回答