Hi :wave: ,
This is my script now:
let ranking = base.getTable("Ranking");
let record = await ranking.selectRecordsAsync();
for (let line of record.records){
let tweet_url = line.getCellValue("tweet_url");
if (tweet_url != null){
let status_location = tweet_url.indexOf("status");
let id = tweet_url.slice(status_location+7);
let link = `https://api.twitter.com/2/tweets/${id}?tweet.fields=created_at`;
let token = "AAAAAAAAAA2pr2rjtB9ewZtrXtic5AXxsWdAC";
let response = await remoteFetchAsync(link, {
headers: {
Authorization: `Bearer ${token}`
}
})
let file = await response.json();
let datetime = file["data"]["created_at"];
let t_location = datetime.indexOf("T");
let time = datetime.slice(t_location+1,t_location+9);
console.log(time);
await ranking.updateRecordAsync(line, {"tweet_time": `${time} GMT`});
console.log("time updated");
}
}
I would like to change it so it gets the time from each cell (tweet_time column) and then I can modify the if statement to only make it run when the cell was modified in the last 10 min (for example).
Thanks a lot!
Edouard