Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am attempting to get all tweets fro a specific user with a hashtag. The url I am using is:

https://api.twitter.com/1/statuses/user_timeline.json?q=%23jdmr%2Bfrom%3ABarrySpang

which without the URL encoding is simply: https://api.twitter.com/1/statuses/user_timeline.json?q=#jdmr+from:BarrySpang

When I try it in twitter search (as stated in the API docs) and it displays the desired results, however when I try the above URL I get a 401 response with this error message: {"request":"/1/statuses/user_timeline.json?q=%23jdmr%2Bfrom%3ABarrySpang","error":"Not authorized"}

Please can you advise me on this

share|improve this question

1 Answer

up vote 1 down vote accepted

statuses/user_timeline doesn't have q parameter

You should be using search: https://api.twitter.com/1/search.json?q=%23jdmr%2Bfrom%3ABarrySpang

share|improve this answer
You absolute hero, thanks for that. – Alex Brown May 11 '12 at 14:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.