Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7160163
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T13:21:13+00:00 2026-05-28T13:21:13+00:00

Here is the code I am using to get Facebook friend list, the class

  • 0

Here is the code I am using to get Facebook friend list, the class

public class FBUser
{
    public long Id { get; set; }
    public string Username { get; set; }
    public string Name { get; set; }
    public string Link { get; set; }
    public string Picture { get; set; }

    // empty constructor
    public FBUser()
    { }
}

the list class

public class FbFriendList
{
    public WcdyList<FBUser> Data { get; set; }
}

and here is the method I am using to get the friend list:

try
{   
    FacebookClient client = new FacebookClient(accesstoken);
        FbFriendList myfriends = client.Get<FbFriendList>("me/friends?fields=id,name,username,picture,link");

        if (myfriends.Data.Count > 0) return myfriends.Data;
        else return null;
}
catch (Exception ex) { }

myfriends is returning the data object null, can you please tell me what I am doing wrong here?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T13:21:14+00:00Added an answer on May 28, 2026 at 1:21 pm

    You can use code like this to get the friends info

    FacebookClient client = new FacebookClient(accesstoken);
    dynamic result = app.Get("me/friends?fields=id,name,username,picture,link");
    

    Now you can map the resulting data to your custom classes…

    Update:
    Seems like you using Data instead of data (you should stick to original names of fields in response)

    public class FbFriendList {
      public WcdyList<FBUser> data { get; set; }
    }
    

    Update2:
    You can loop over the list to get friends details like this:

    foreach (dynamic friend in result.data) {
      string friendId = friend.id;
      string friendName = friend.name;
      // etc...
    }
    

    Or like this if you not yet on .net4:

    var resultData = (IList<object>)result.data;
    foreach (var friendObj in resultData) {
      var friend = (IDictionary<string, object>)friendObj;
      string friendId = friend["id"];
      string friendName = friend["name"];
      // etc...
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here is the current code I am using: <UserControl xmlns=http://schemas.microsoft.com/winfx/2006/xaml/presentation xmlns:x=http://schemas.microsoft.com/winfx/2006/xaml x:Class=ButtonPrototype.MainPage Width=640 Height=480>
here is a code : using System; using Nemerle.Collections; using Nemerle.Text; //using Nemerle.Utility; using
I am using pseudo-code here, but this is in JavaScript. With the most efficient
Having this code: using (BinaryWriter writer = new BinaryWriter(File.Open(ProjectPath, FileMode.Create))) { //save something here
I'm looking for something like break for loops. Here's some example code (using Symfony's
I'm using some code from here to determine when determining when the last finger
Im using Doctrine and i dont quite understand this code here: $this->hasColumn('id', 'integer', 8,
I have a piece of code here that does not work despite me using
Here's a version of the code I'm using, stripped down to just the parts
I'm using an HTML sanitizing whitelist code found here: http://refactormycode.com/codes/333-sanitize-html I needed to add

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.