We are using the Genesys Cloud Python SDK in a custom .NET wrapper via CPython. The docs say the SDK handles token refresh automatically. But after 59 minutes, our API calls fail with 401 Unauthorized. We initialize the client like this:
client = PureCloudPlatformClientV2()
client.login_client_credentials(client_id, client_secret)
No manual refresh logic. Is there a config flag missing or is the background thread not starting?