Mark Watitwa
Results
1
comments of
Mark Watitwa
The issue on my end was using a wrong parameter in the `setTokenExpires` method while initializing the connection. Mistake: `$connection->setTokenExpires($numberOfSecondsToExpiry);` Fix: `$connection->setTokenExpires($unixTimestampOfExpiryTime);` Example: You can use **Carbon\Carbon** to parse the...