I am using postman with OAuth1 to send tweet search requests.

For a query like this:
https://api.twitter.com/1.1/search/tweets.json?q=test

It works no problem, I get results.
But as soon as i use Operands, i get the error 32 Could not authenticate you.

Here is a request example that yields the error:
https://api.twitter.com/1.1/search/tweets.json?q=from:Microsoft

I have configured all 3 sandbox enviroments (even though I don’t know if i needed to). What can be causing this error?

You must URL encode the query properly: https://developer.twitter.com/en/docs/basics/authentication/guides/percent-encoding-parameters

Also using Postman to manually make requests is needlessly complicated - twurl is a better choice for making calls or testing: https://github.com/twitter/twurl

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.