Skip to content
Advertisement

A class with a mutable variable. API token

I am trying to create an API client, but the problem is that the token changes every hour. I want to create a class that contains a “token” variable that should change every hour.

The idea is to get a token when first run the script, create this object and use it.

I have a function that successfully receives a new token on execution.

JavaScript
JavaScript

Advertisement

Answer

One way is to record when the token was made, and compare timestamp to see if token is valid.

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement