我的代码在最后一个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) =>
{
}
答案 0 :(得分:1)
正如我在github上提到的,问题是你没有正确使用Coordinates
类。
您只是将纬度和经度坐标反转。
stream.AddLocation(new Coordinates(90, -180), new Coordinates(-90, 180));