We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
<?php include("TwitterAPIExchange.php"); $accesstoken = 'bla bla'; $accesstokensecret = 'bla bla'; $consumerkeyapikey = 'bla bla'; $consumersecretapikey = 'bla bla'; $hashtags = '#india_india'; $url = 'https://api.twitter.com/1.1/search/tweets.json'; $getfield = '?q='.$hashtags.'&count=50'; //30hashtag post defined $requestMethod = 'GET'; $twitter = new TwitterAPIExchange($settings); $tweest_json = $twitter->setGetfield($getfield)->buildOauth($url,$requestMethod)->performRequest(); $tweets = json_decode($tweest_json, true); echo $tweest_json; die(); //it's showing me an blank array, //if i am using only single value with hash sign its showing me data. ie: **$hashtags = '#india';** ?>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The text was updated successfully, but these errors were encountered: