Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 621 Bytes

user-information.md

File metadata and controls

15 lines (11 loc) · 621 Bytes

User Information

BotMan has a simple way to let you retrieve user relevant information.

$botman->hears('Hello', function($bot) {
	$user = $bot->getUser();
	$bot->reply('Hello '.$user->getFirstName().' '.$user->getLastName());
	$bot->reply('Your username is: '.$user->getUsername());
	$bot->reply('Your ID is: '.$user->getId());
});

{callout-info} Not every messaging service allows BotMan to retrieve all available user information. Nexmo for example does not have any detailed user information, since it is just an SMS messaging service, that has no additional user information stored in their system.