推特流式处理 API 位置

本文关键字:API 位置 处理 | 更新日期: 2023-09-27 18:31:41

我正在尝试用 C# 实现一个 Twitter 流查看器,我的问题不在于 C# 本身。

我只是在尝试使用Twitter流媒体API的地理位置装箱功能。我正在尝试以此表单发送请求

private string url = @"https://stream.twitter.com/1/statuses/filter.json?track=";

然后我附加我的参数

 for (int i = 0; i < keywords.Count; i++)
        {
            url += keywords[i].ToString() + "%2C";
        }

在此之前,查询工作正常,当我添加这个时它停止工作

 url += @"&amp;locations=" + location;

其中,位置变量具有值

-121.75,36.8,-122.75,37.8

所以我最终得到的查询看起来像这样

https://stream.twitter.com/1/statuses/filter.json?track=twitter%2Cfacebook%2Ciphone&amp;locations=-121.75,36.8,-122.75,37.8

我收到回复 406 不可接受,有什么想法吗?

推特流式处理 API 位置

尝试将&amp;替换为标准与号。