예제 #1
0
        public List<FriendTimelineList> GetFriendTimeline(string format, string apiToken, string apiTokenSecret)
        {
            SinaApiService myApi = new SinaApiService();
            string myResult = myApi.friend_timeline(format, consumerKey, consumerKeySecret, apiToken, apiTokenSecret);

            XDocument doc = XDocument.Parse(myResult);

            return FriendTimelineList.Parse(doc.Root);
        }