The only solution possible by code - afaik - is the refresh pulling with JavaScript's setTimeout().
E.g., to refresh every 60 seconds:
setTimeout(function () {
var iframe = document.getElementById('yourIFrameId');
var url = iframe.src;
iframe.src = url;
}, 60 * 1000);