# How to update a curator.io feed? (Javascript?)

**URL:** https://community.glideapps.com/t/how-to-update-a-curator-io-feed-javascript/52955
**Category:** Ask for Help
**Created:** [October 31, 2022, 7:19am UTC](https://community.glideapps.com/t/how-to-update-a-curator-io-feed-javascript/52955 "2022-10-31T07:19:41Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Alexander\_Rubino](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/alexander_rubino/32/48638_2.png) [@Alexander\_Rubino](https://community.glideapps.com/u/Alexander_Rubino)
#### Post date: [October 31, 2022, 7:19am UTC](https://community.glideapps.com/t/how-to-update-a-curator-io-feed-javascript/52955/1 "2022-10-31T07:19:41Z")

</div>

I’m using [curator.io](http://curator.io) for making a feed for my glide app. The feed contains Instagram posts from an account. Currently the feed only refreshes/updates every 24 hours, but I want to make this every hour. I was wondering if this was possible with maybe Javascript or something else.  
Note: I’m getting the feed into my glide app with an HTML.

My HTML file (The source for my feed):

```auto
<!-- Place <div> tag where you want the feed to appear -->
<div id="curator-feed-default-feed-layout"><a href="https://curator.io" target="_blank" class="crt-logo crt-tag">Powered by Curator.io</a></div><!-- The Javascript can be moved to the end of the html page before the </body> tag --><script type="text/javascript">
/* curator-feed-default-feed-layout */
(function(){
var i,e,d=document,s="script";i=d.createElement("script");i.async=1;i.charset="UTF-8";
i.src="https://cdn.curator.io/published/66bef0b8-a238-45ab-9951-51ccb4b07df8.js";
e=d.getElementsByTagName(s)[0];e.parentNode.insertBefore(i, e);
})();
</script>

```

I have tried updating the HTML file with this command:

```auto
setTimeout(function(){
   window.location.reload();
}, 5000);

```

However, this only updates the HTML file but doesn’t update the feed. How can I update the feed and look for new Instagram posts every hour?

---

<div class="post-metadata">

### Author: ![Jeff\_Hager](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/jeff_hager/32/43_2.png) [@Jeff\_Hager](https://community.glideapps.com/u/Jeff_Hager)
#### Post date: [October 31, 2022, 11:47am UTC](https://community.glideapps.com/t/how-to-update-a-curator-io-feed-javascript/52955/2 "2022-10-31T11:47:37Z")

</div>

Didn’t you say that they update their feed every 24 hours? According to their pricing page the feed updates every 24 hours with the free plan. The paid plans update every hour. I’d assume that refreshing the page would not change that fact.

---

<div class="post-metadata">

### Author: ![Alexander\_Rubino](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/alexander_rubino/32/48638_2.png) [@Alexander\_Rubino](https://community.glideapps.com/u/Alexander_Rubino)
#### Post date: [October 31, 2022, 12:01pm UTC](https://community.glideapps.com/t/how-to-update-a-curator-io-feed-javascript/52955/3 "2022-10-31T12:01:35Z")

</div>

Yes. However, I would have hoped that I could somehow work around this. And maybe not have to pay, but I guess not

---

<div class="post-metadata">

### Author: ![Jeff\_Hager](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/jeff_hager/32/43_2.png) [@Jeff\_Hager](https://community.glideapps.com/u/Jeff_Hager)
#### Post date: [October 31, 2022, 12:10pm UTC](https://community.glideapps.com/t/how-to-update-a-curator-io-feed-javascript/52955/4 "2022-10-31T12:10:50Z")

</div>

If it was that easy, then they would make any money.
