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 8180805
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T00:18:48+00:00 2026-06-07T00:18:48+00:00

I am developing facebook app in which i am fetching user’s friend detail in

  • 0

I am developing facebook app in which i am fetching user’s friend detail in as

dynamic result = client.Get("me/friends"); //it gives friend's data for id, name

it gives data in

{
  "data": [
    {
      "name": "Steven", 
      "id": "57564897"
    }, 
    {
      "name": "Andy", 
      "id": "8487581"
    }
}

Now i would like to parse this data and store it. so that i can use it my way.

I was trying to parse it using JSON.NET and show the data in view as

var model = JsonConvert.DeserializeObject<FriendDetail>(result.data);

in the class :

public class FriendDetail
    {
        public string id { get; set; }
        public string name { get; set; }

        public FriendDetail(string i, string n)
        {
            id = i;
            name = n;
        }
    }

Now so that i can pass the view as “return View(model)“

But its giving me error: The best overloaded method match for 'Newtonsoft.Json.JsonConvert.DeserializeObject<FBApp.Models.FBFriendDetail>(string)' has some invalid arguments

Why this error is occurring ?

Please help me to parse this json data.

Also is there any better way to parse and Store json data and also then show in view ?

Please help

  • 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-06-07T00:18:51+00:00Added an answer on June 7, 2026 at 12:18 am

    You are trying to deserialize a list of FriendDetail objects into a single FriendDetail object. Try the following:

    var jObject = JObject.Parse(result.ToString());
    var model = JsonConvert.DeserializeObject<List<FriendDetail>>(jObject["data"].ToString());
    

    EDIT

    This is how I tested it:

    var result = 
        @"{
            ""data"": [
            {
                ""name"": ""Steven"", 
                ""id"": ""57564897""
            }, 
            {
                ""name"": ""Andy"", 
                ""id"": ""8487581""
            }]
        }";
    
    var jObject = JObject.Parse(result.ToString());
    var model = JsonConvert.DeserializeObject<List<FriendDetail>>(jObject["data"].ToString());
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm developing a facebook iframe app (page app), which counts the user's friends that
I was developing app which uses Facebook API authentication for user login. But sometimes
I am developing a Facebook App in which I get some text from the
I'm developing an iPhone app which uses Facebook sharing. I cannot create the Facebook
I'm developing a Facebook Page Tab app where a user will be drawing on
For an app I'm developing for Facebook, when the user first logs in, I'd
I'm developing a Facebook app which allow my users to draw their wanted path
I am developing a Facebook app. I have a server side OAuth flow which
I am developing an iPhone app which needs Facebook to be integrated to my
I'm developing a Facebook app and I need to get the URL of the

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.