Twitter API, C#, ASP.Net

本文关键字:Net ASP Twitter API | 更新日期: 2023-09-27 18:33:41

如何检索朋友列表及其详细信息(照片,姓名和姓氏)

关于朋友/关注者的最大信息

在推特中使用 C#

谢谢

Twitter API, C#, ASP.Net

使用 LINQ to Twitter

http://linqtotwitter.codeplex.com/

一些示例代码:

        var friendshipResults =
            from friend in twitterCtx.Friendship
            where friend.Type == FriendshipType.Show &&
                  friend.SourceScreenName == ownerScreenName &&
                  friend.TargetScreenName == screenName
            select friend;