-1

I have been trying to create an observable tweeter feed using tweetsharp with the following

    public IObservable<IEnumerable<TwitterStatus>> MakeTweetRequest(string screenName)
    {
        var service = new TwitterService();
        var r = Observable.FromAsyncPattern<string, IEnumerable<TwitterStatus>>(
           (x,y,g) => service.BeginListTweetsOnSpecifiedUserTimeline(x), 
              d => service.EndListTweetsOnSpecifiedUserTimeline(d) );


        return r(screenName);
    }

but i'm just unable to get it to work can anyone help?

Madu Alikor
  • 2,544
  • 4
  • 21
  • 36

1 Answers1

1

There are a few examples using TweetSharp in my Rx-Demo

Each of these do the same thing, via different Rx methods, which is too ListTweetsOnHomeTimelineSince and all future tweets:

Scott Weinstein
  • 18,890
  • 14
  • 78
  • 115