I've been experimenting with Managing News for the past few days. I've used the Twitter Search API (http://apiwiki.twitter.com/w/page/22554756/Twitter-Search-API-Method:-se...) to build ATOM feed results that Managing News imports. All good there!

The thing I'm running into has to do with these feeds being updated. When I run the cron job, any of the feeds that I have subscribed to that are RSS based (Twitter, Websites, etc.) will update no problem. The feeds that I have subscribed to using Twitter's Search API don't budge.

Now, the interesting thing is that when I go into the Feeds section of the site, edit the feed, and then import it manually, it updates fine.

Anyone have a workaround for this? Is there something I can do so that the cron job refreshes that ATOM feed?

Comments

mikemadison’s picture

Status: Active » Closed (won't fix)

Just a belated update to this.

If you add the following line to settings.php then all of the feeds updated appropriately. I think it has to do with the number of feeds that a cron job updates.

$conf = array('job_schedule_num' => 1000);