Suddenly I am getting {“errors”:[{“message”:“Could not authenticate you”,“code”:32}]} errors, even though I have valid access tokens from our clients. Other 1.1 API calls are working fine, but when we try and access https://api.twitter.com/1.1/search/tweets.json we consistently get this result.
Anyone else seeing this and have any insights into what might be happening? I believe I have the request correct:
objOAuth.ConsumerKey = OAUTH_CONSUMER_KEY
objOAuth.ConsumerSecret = OAUTH_CONSUMER_SECRET
objOAuth.EndPoint = "https://api.twitter.com/1.1/search/tweets.json"
objOAuth.Parameters.Add "oauth_token", SESSION(OAUTH_TOKEN)
objOAuth.Parameters.Add "q", thisSearch
objOAuth.Parameters.Add "count", "100"
objOAuth.Parameters.Add "since_id", thisStatusId
objOAuth.RequestMethod = OAUTH_REQUEST_METHOD_GET
objOAuth.TimeoutURL = OAUTH_TIMEOUT_URL
objOAuth.Host = TWITTER_API_HOST
objOAuth.UserAgent = TWITTER_APP_NAME
objOAuth.Send()