Giter Club home page Giter Club logo

Comments (4)

prabirshrestha avatar prabirshrestha commented on July 21, 2024

your _restClient.Execute<List>(request). is falling coz the object ur getting is not a a list/array.

u should create another one

[DataContract]
public class FacebookCollection {
[DataMember(Name = "data")]
public List Data { get; set; }
}

then call the execute
_restClient.Execute<FacebookCollection<User>>(request);

anyways i have been creating a sdk for facebook graph api, u can find it here http://github.com/prabirshrestha/FacebookSharp/blob/master/src/FacebookSharp.Core/Schemas/Graph/_Connection.cs

im slowly planning on using restsharp as the helper library for it.

from restsharp.

johnsheehan avatar johnsheehan commented on July 21, 2024

Actually Brandon's code should work without any attributes. None of the DataContract attributes are supported by the JsonDeserializer.

from restsharp.

johnsheehan avatar johnsheehan commented on July 21, 2024

Bad news Brandon. There's no way that I can think of with the current JSON.NET parsing to support .Execute<List<foo>>() for both types of valid JSON:

[ 
        {
            "name": "Bob",
            "id": "12345"
        }, 
        {
            "name": "Mike",
            "id": "123456"
        }, 
        {
            "name": "Joe",
            "id": "100000000000"
        } 
]

and

{     
    "data": [ 
        {
            "name": "Bob",
            "id": "12345"
        }, 
        {
            "name": "Mike",
            "id": "123456"
        }, 
        {
            "name": "Joe",
            "id": "100000000000"
        } 
    ]
}

So to make this work you'll have to define your poco like this:

class UserList {
    public List<User> data { get; set; }
}

And call it with client.Execute<UserList>(request);

from restsharp.

johnsheehan avatar johnsheehan commented on July 21, 2024

The reason it won't work with RootElement is that you can't change the root until after you've parsed the whole object with JObject.Parse(). But if the doc has an array at the root, you have to parse with JArray.Parse() which breaks if it isn't an array. I think List is a better match for root arrays, so it wins out. Especially since there are alternate ways to get at that child node for lists.

from restsharp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.