In-Client Auth flow in Zoom Linux desktop client

API Endpoint(s) and/or Zoom API Event(s)

Description
The in-client authorization flow works without problems on Windows within the Zoom desktop client. Nevertheless, the same code does not fire the onAuthorized event on Linux. Is there a plan to support this on Linux? Here is my code:

zoomSdk.addEventListener("onAuthorized", (event) => {
    console.log(event);
});
zoomSdk.authorize({ codeChallenge: codeChallenge, state: state })
    .then(e => console.log(e))
    .catch(e => console.log(e));

Error?
No error message. The zoomSdk.authorize() method even returns {"message": "Success"} However, the event is not fired, hence the code cannot be retrieved in order to request an access token.