macOS sample project not working

Hello, I have the exact same issue as this. Did this get resolved.
I press Auth and nothing happens.

This is surprisingly the only log I see ( nothing else gets logged for some reason )
2023-04-22 18:27:42.066052+0800 ZoomSDKSample_universal[85512:22230339] Metal API Validation Enabled

This is how I am generating my token:

import time
import datetime
import jwt
iat = int(time.time())
exp = (datetime.datetime.today() + datetime.timedelta(days=2)).strftime("%s")
tokenExp = (datetime.datetime.today() + datetime.timedelta(hours=1)).strftime("%s")

payload = {
    'appKey': "",
    'iat': iat,
    'exp': exp,
    'tokenExp': tokenExp
}
encoded = jwt.encode(payload, "", algorithm='HS256')
print(encoded)