Click here to Skip to main content
15,886,199 members
Articles / Programming Languages / XML

Connecting to Social Network APIs with Spring.NET Social

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
21 Nov 2018CPOL8 min read 22.1K   686   14  
Spring.NET Social helps you to simplify authentication (OAuth) and API binding with Software-as-a-Service (SaaS) providers such as Facebook and Twitter.
using System.Collections.Generic;

using Spring.Json;

namespace Spring.Social.Twitter.Api.Impl.Json
{
    /// <summary>
    /// JSON deserializer for list of tweets. 
    /// </summary>
    class TweetListDeserializer : IJsonDeserializer
    {
        public object Deserialize(JsonValue value, JsonMapper mapper)
        {
            IList<Tweet> tweets = new List<Tweet>();
            foreach (JsonValue itemValue in value.GetValues())
            {
                tweets.Add(mapper.Deserialize<Tweet>(itemValue));
            }
            return tweets;
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
France France
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions