I'm trying to move my bot for Circuit to production. My app for it uploaded on Azure Web App Service. When I test bot on sandbox it works great. But if I change only config (client_id, client_secred and domain) and restart app it falls on method circuit.logon with this error message:
Error on ciruit.logon. The Application null is not enabled for scope ::=[CALL_RECORDING]
If I specify a scope on creating circuit client like that:
scope: 'READ_USER_PROFILE'
or any other scope it changes to:
Error on ciruit.logon. The Application null is not enabled for scope ::=[READ_USER_PROFILE]
The Application null bothers me. And I tried all scopes due to last part of error but it won't work. What could cause this error?