In JS with a sample ? I use “search_tweets” with q paremeter by it seems wrong… Thanks
me._cb.__call( "search_tweets", "q=id:692597846713995264", function (reply, rate, err) { //... }, false // this parameter required );
You would need to use GET statuses/show/:id to retrieve an individual status. I’ve no idea what that would look like in the Javascript library you are using.
GET statuses/show/:id
Thanks, I am looking for this “analogy” with CodeBird for JS, impossible to find…
Looking at the Codebird.js README, this seems to be what you need
statuses/show/:id maps to cb.__call("statuses_show_ID", 'id=12345', ...)