每 10 分钟调用一次 Rest API(无需 FE 应用)

问题描述 投票:0回答:1

我想每 10 分钟安排一次 GET API 调用,而不使用前端应用程序。

注意: 由于我的要求,无法使用调度程序。

考虑我的 API 是 https://xvyz.com/keep-alive

是否有任何可能的方法可以在不打开应用程序或使用前端的情况下实现此 API 调用!

angular get postman
1个回答
0
投票

您可以使用

setInterval()
来达到您的目的。下面的脚本将以 10 分钟的间隔调用 API。

setInterval(() => {
    fetch('https://jsonplaceholder.typicode.com/todos/1')
      .then(response => response.json())
      .then(json => console.log(json))
}, 600000)
© www.soinside.com 2019 - 2024. All rights reserved.