Home > OS >  Bad Twitter streaming request: 403
Bad Twitter streaming request: 403

Time:05-07

I'm trying to access twitter's api v1.1 filtered streaming endpoint but it gives me 403 error. I don't understand why. I can access other endpoints but not filtered stream for some reason.

It gives me this error-

HTTP ERROR: 403

Problem accessing '/1.1/statuses/filter.json

Reason: Please use V2 filtered and sample volume stream as alternatives

CodePudding user response:

Is this a brand new developer account and app? v1.1 streams are deprecated and new client apps cannot access statuses/filter as of the end of April 2022, in preparation for future removal of the endpoint. The error message directs you to use the replacement v2 filtered stream API instead.

  • Related