Fetch JSON auto-update

HI,

I’m using fetch plugin to get JSON data which is updated each minute. I wonder how to refresh that info on table so user can see most recent data.

Is it possible?

I think you could adapt the technique shown in the following thread:

1 Like

It was so useful, the part of js fetch code was the cherry on top:

var obj = "";
if(p1==1){
obj = await fetch('url');
} else {
obj = await fetch('url');
}

const json = await obj.json();
return json.___[__]["___"]["___"];

Thank you :slight_smile:

4 Likes

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.