Hey,
Thanks for the reply.
We are using Zend_Service_Twitter library for the version Zend 1.12
I have used following code for the reference.
$twitter_accessToken // We will fetch from the Twitter after User authentication using OAuth
$token = unserialize($twitter_accessToken);
$twitter = Api_Twitter::createTwitterObject($token);
$searchText = $keyword;
$searchText = $searchText.' -'.$exclude; // content to Exclude
$searchText = $searchText.' filter:Images'; // To filter images/videos etc
$options['count'] = '100';
$options['tweet_mode'] = 'extended';
if($language != 'any') {
$options['lang'] = $language;
}
$resultData = $twitter->searchTweets($searchText, $options);
$decodedData = json_decode($resultData->getRawResponse(), true);
For end users, we provide option to add multiple Twitter networks with in our application.
So while adding the column to search, along with filters, we provide an option to choose from which Twitter Network the search to be executed.
The same code working for other Twitter Tokens (for other columns). But for some specific tokens, that too after some iterations, this error message coming. Then after, its stops pulling the data from API, for that Twitter Token.
Couldn’t get the exact scenario why this is happening.