1

我正在尝试使用 tweetinvi 以流模式关注特定用户。我尝试用我的 twitter 帐户测试 AddFollow(发推文,看看它是否抓住了那个) - 不起作用(顺便说一句 - AddTrack 工作)

  1. 如何获取我的 twitter 用户 ID(从 tweetinvi 的角度来看,http://mytwitterid.com/ 是正式的用户 ID 吗

  2. 我还能如何测试它 - 或者这里有什么问题?

     var filteredStream = Stream.CreateFilteredStream();
    
        filteredStream.AddFollow(myTwitterUserId);            
    
        filteredStream.MatchingTweetReceived += (sender, args) =>{
         Console.WriteLine(args.Tweet.Text);};
    
        Thread t = new Thread(() =>
        {
            // Start the stream matching any of the conditions
            filteredStream.StartStreamMatchingAllConditions();
        });
    
    t.Start();
    
4

0 回答 0