FeedWind crawler update frequency

  • Created : Jun, 1, 2016
  • Last Updated: Sep, 24, 2023

The FeedWind crawler bot

The FeedWind crawler is an RSS feed crawler bot for FeedWind, a widget which displays RSS feeds, provided by Mikle Inc.

To display recent content from a feed in our RSS widget, we regularly crawl the RSS feed entered in the setup page of FeedWind. Technically, we crawl once every 5 minutes to 5 hours depending on a user’s plan so feeds will refresh at that frequency. However, RSS feeds are updated by the RSS feed source page owners, so obviously we can only update as fast as the originating feed updates.

Widget refresh (update frequency)

Using a script to force automatic refresh

Function RefreshIframes(){

$(“iframe”).each(function() {

var src= $(this).attr(‘src’);

$(this).attr(‘src’, src);

});

}

setInterval(function() {

RefreshIframes();

}, 30000);

Using HTML to force automatic refresh

<meta http-equiv=”refresh” content=”1800″>

Which will refresh the whole page every 1800 seconds


FeedWind crawler technical details

Crawler: FeedWind Crawler
User-Agent: Mozilla/5.0 (compatible; Feedwind/3.0; +http://feed.mikle.com/support/description/)



Related posts

Supported site building platforms

Contents1 Online site building platforms / blogs2 Desktop website building software3 Make sure you paste our code into the right...

What is FeedWind used for?

Contents1 Tickertape2 Custom colors and fonts3 Custom shapes4 Slideshow5 News widget6 Blog summary FeedWind is an extremely versatile RSS...

Screenshot and Screencasts

Contents1 Screenshots2 Screencasts Screenshots and screencasts are handy tools for both developers and clients. A screenshot is a picture...