79380094

Date: 2025-01-23 07:03:19
Score: 0.5
Natty:
Report link

This is happening because when app is starting on a higher environment, it is triggering as MultiTeams App instead of SingleteamApp. All you need to do is to initiate the App with null clientId and Secret.

AppConfig config =
        AppConfig.builder()
.clientId(null)
.clientSecret(null)
.singleTeamBotToken(botToken)
.build();

This should solve the issue.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Kumar Dev