matchMinimumDateInEpoch:
const matchMinimumDateInEpoch: number = env.MATCH_MINIMUM_DATE.getTime(); // results in the number 1704931200000
As far as I can tell the LolApi Client is sending the start param as a string (wrapping it in quotation marks) therefor riots java api fails because it expected a number and not a string.
Do you mean to use the startTime param, not start? In case you are, that param takes inputs in seconds not ms, so you'll have to env.MATCH_MINIMUM_DATE.getTime() / 1000.
After I called :
i got this response:
matchMinimumDateInEpoch:
const matchMinimumDateInEpoch: number = env.MATCH_MINIMUM_DATE.getTime(); // results in the number 1704931200000
As far as I can tell the LolApi Client is sending the start param as a string (wrapping it in quotation marks) therefor riots java api fails because it expected a number and not a string.