我的代码与最后一个TweetInvi API失败。为了使它工作,我必须将它与AddTrack组合在一起。
以下代码只有在取消注释"stream.AddTrack()"时才有效。
var stream = Stream.CreateFilteredStream();
stream.AddLocation(new Coordinates(-180, 90), new Coordinates(180, -90));
//stream.AddTrack("xbox");
stream.MatchingTweetReceived += (sender, args) =>
{
}
正如我在github上提到的,问题是您没有正确使用Coordinates
类。
你只是颠倒了你的坐标纬度和经度。
stream.AddLocation(new Coordinates(90, -180), new Coordinates(-90, 180));