This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const API_KEY = "API_KEY" | |
| const SERVER_URL = "SERVER_URL" // requires http/https and port (if relevant) | |
| const REFRESH_EVERY = 6 // Hours | |
| /* Headers for later request */ | |
| let reqBaseHeaders = { | |
| 'x-api-key': API_KEY, | |
| 'Accept': 'application/json' | |
| } |