我正在尝试使用 Facebook id 检索 Facebook 好友的详细信息(名字、姓氏、性别等)

发布于 2024-11-09 00:57:22 字数 1019 浏览 0 评论 0原文

我的代码是:-

try
    {
        params.putString("fields", "first_name");
        params.putString("fields", "last_name");
        params.putString("fields", "link");
        params.putString("fields", "gender");
        params.putString("fields", "birthday");

        JSONObject json = new JSONObject(facebook.request(Id, params));
        JSONArray array =   json.getJSONArray("data");
        if(array != null)
        {
            for(int i=0;i<array.length();i++)
            {
                String name = array.getJSONObject(i).getString("name");
                String birthday = array.getJSONObject(i).getString("friends_birthday");
                String location = array.getJSONObject(i).getString("friends_location");
                String web = array.getJSONObject(i).getString("friends_website");

                System.out.println(name+"-"+birthday+"-"+location+"-"+web);
            }
        }

    }
    catch(Exception e)
    {

    }     

我在哪里犯了错误。请帮我。提前致谢

My Code is:-

try
    {
        params.putString("fields", "first_name");
        params.putString("fields", "last_name");
        params.putString("fields", "link");
        params.putString("fields", "gender");
        params.putString("fields", "birthday");

        JSONObject json = new JSONObject(facebook.request(Id, params));
        JSONArray array =   json.getJSONArray("data");
        if(array != null)
        {
            for(int i=0;i<array.length();i++)
            {
                String name = array.getJSONObject(i).getString("name");
                String birthday = array.getJSONObject(i).getString("friends_birthday");
                String location = array.getJSONObject(i).getString("friends_location");
                String web = array.getJSONObject(i).getString("friends_website");

                System.out.println(name+"-"+birthday+"-"+location+"-"+web);
            }
        }

    }
    catch(Exception e)
    {

    }     

where do I am commtting mistake. please help me. Thanks in Advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

鯉魚旗 2024-11-16 00:57:22

我们可以获取用户好友的详细信息
捆绑包参数 = new Bundle();
字符串 accessToken = facebook.getAccessToken();

    try
    {
            params.putString("format", "json");
            params.putString("access_token", accessToken);

            String url = "https://graph.facebook.com/"+Id;
            String response = Util.openUrl(url, "GET", params);

            JSONObject json = Util.parseJson(response);
            String fname = json.getString("first_name");
            String lname = json.getString("last_name");
            String birthday = json.getString("birthday");
            String gender = json.getString("gender");
            String location = json.getString("locale");
            String web = json.getString("link");

}
catch(Exception e)
{

}     

we can get the details of a user's friends
Bundle params = new Bundle();
String accessToken = facebook.getAccessToken();

    try
    {
            params.putString("format", "json");
            params.putString("access_token", accessToken);

            String url = "https://graph.facebook.com/"+Id;
            String response = Util.openUrl(url, "GET", params);

            JSONObject json = Util.parseJson(response);
            String fname = json.getString("first_name");
            String lname = json.getString("last_name");
            String birthday = json.getString("birthday");
            String gender = json.getString("gender");
            String location = json.getString("locale");
            String web = json.getString("link");

}
catch(Exception e)
{

}     
终弃我 2024-11-16 00:57:22

如果你不告诉我们你想用你的代码做什么以及它出了什么问题,我们很难为你提供帮助。

但是,通过查看您的代码,我会告诉您确认您是否以正确的方式放置了所需的字段。如果 params 像哈希表一样工作,您将覆盖关键“字段”的值 - 因此,您将只询问生日,而不是询问名字、姓氏等。

it is very hard to help you without you telling us what you are trying to do with your code and what is going wrong with it.

However, by looking at your code, I would tell you to confirm that you are putting the fields you want in the correct way. If params works like an hashtable, you would be overritting the values for key "fields" - so instead of asking for first_name, last_name, etc you would be asking only for birthday.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文