Hi Guys,
I am doing some research with twitter’s streaming API.
What I am doing is using public streams with “track” API parameter.
The resource URL being : https://stream.twitter.com/1.1/statuses/filter.json
I am using tmhOAuth.php library to make the request.
Here is my code , param being the keywords I am willing to track.
$params = array("track"=>'BAND','BET','DEAF','FLOAT');
$twitter->streaming_request($method,$url,$params,'streamRequestCallBack');
However I am getting tweets only with “BAND” as keywords and no other, Can someone help me with this as to why I am not getting other keywords.
Best ,
Ishan