We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I call the getBotUserId() function, I do not get back the bot user ID but NULL.
getBotUserId()
NULL
<?php use BotMan\BotMan\BotMan; use BotMan\BotMan\BotManFactory; use BotMan\BotMan\Drivers\DriverManager; require __DIR__ . '/../vendor/autoload.php'; require __DIR__ . '/../source/config.php'; DriverManager::loadDriver(\BotMan\Drivers\Slack\SlackDriver::class); $botman = BotManFactory::create($config); $botman->loadDriver('Slack'); $botUserId = $botman->getDriver()->getBotUserId(); echo $botUserId; echo gettype($botUserId);
PHP: 7.1.33 Botman: 2.5.0 Slack-Driver: 2.2.0
The text was updated successfully, but these errors were encountered:
I think you need this permission: https://api.slack.com/scopes/users:read
Sorry, something went wrong.
No branches or pull requests
When I call the
getBotUserId()
function, I do not get back the bot user ID butNULL
.Reproduction steps
PHP: 7.1.33
Botman: 2.5.0
Slack-Driver: 2.2.0
The text was updated successfully, but these errors were encountered: