0

解決策を見つけた : 独自の解決策を見つけました。2 知りたい方はご連絡ください。

Twitter を Windows Phone アプリに統合する方法がわかりません。

私が持っている、または必要なもの:

  1. ハッシュタグ (「zesdaagsegent」)、このハッシュタグにツイートした人は、Windows Phone アプリに表示されます。
  2. 既読のみ、de Windows Phone アプリ等では返信しません。
  3. ツイーターのユーザー名、ツイーターの画像アバター、そしてもちろん彼のメッセージが必要です。

これは私の試行コードです:

WebClient twitter = new WebClient();
            twitter.DownloadStringCompleted += new DownloadStringCompletedEventHandler(twitter_DownloadStringCompleted);
            twitter.DownloadStringAsync(new Uri("http://search.twitter.com/search.xml?q=23zesdaagsegent"));

public void twitter_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
        {
            if (e.Error != null)
                return;

            XElement xmlTweets = XElement.Parse(e.Result);

            lstTwitter.ItemsSource = from tweet in xmlTweets.Descendants("status")
                                     select new Tweet
                                     {
                                         ImageSource = tweet.Element("user").Element("profile_image_url").Value,
                                         Message = tweet.Element("text").Value,
                                         UserName = tweet.Element("user").Element("screen_name").Value
                                     };

        }

編集:エラーは発生しません。

4

1 に答える 1