开发者

How do I track 400 keywords with Twitter using the Streaming API?

开发者 https://www.devze.com 2023-03-17 16:40 出处:网络
I have 400 urls that I want to track in the Streaming API, and I\'m allowed to have 400 keywords (the urls) to track as per the streaming 开发者_如何学Capi.

I have 400 urls that I want to track in the Streaming API, and I'm allowed to have 400 keywords (the urls) to track as per the streaming 开发者_如何学Capi.

However, the url I end up querying with is too large for a standared post request and doesn't work. In the Twitter Docs, it says increaded access levels allow up to 10000 keywords, how does that work with so many keywords in a url?

I'm using Python btw, Any ideas?

Thanks in advance


Your question seems a little confusing -- I assume you must be doing GET rather than POST, as there's no real limit on POSTs. From the API docs:

Placing long parameters in the URL may cause the request to be rejected for excessive URL length. Use a POST request header parameter to avoid long URLs.

So the first thing I would do is make sure you're using POST and not GET. If that doesn't do the trick, it would be helpful if you provided some more details about what sort of errors you are getting back, and perhaps exactly how you are trying to consume the API.

0

精彩评论

暂无评论...
验证码 换一张
取 消