c#Windows Phone 8.1 Twitter Feeds

时间:2015-03-07 16:06:42

标签: c# twitter windows-phone-8.1

我有一个c#windows phone 8.1应用程序,我可以使用以下代码进行登录验证:

             user = await App.MobileService.LoginAsync(MobileServiceAuthenticationProvider.Twitter);

            if (user.UserId != "")
                message = "You are now signed in -" + user.UserId;
            else
                message = "You must log in. Login Required";

            var dialog = new MessageDialog(message);
            dialog.Commands.Add(new UICommand("OK"));
            await dialog.ShowAsync();

我想检索此特定用户的Twitter Feed。 我尝试使用TwitterSharp API,但它仅适用于Windows Phone 8应用程序,而不适用于8.1

1 个答案:

答案 0 :(得分:1)

您的问题过于宽泛,但您可以采取一些步骤来获得所需的结果。

  1. 查看LINQ to Twitter,这是最好的Twitter库之一
  2. 阅读有关fetching Twitter feed with this library
  3. 的文档

    归结为做这样的事情:

    var tweets = await (from tweet in twitterCtx.Status
                        where tweet.Type == StatusType.Home
                        select tweet).ToListAsync();