How to record the result data of a third-party interface over a period of time?

at present, a business needs to rely on third-party interfaces, which are provided in the form of http. But the data of the third-party interface will change over time. For example (it changes every minute between 1: 00 and 2: 00). I want to record the data returned by the http interface within an hour. Then provide it to our own business for replay testing and debugging. May I ask what the plan is?

Jul.06,2022

you are a bit like a crawler. You can use js to write an ajax poll, poll once in a while, and save the results. Consider using node to do it.

Menu