We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
$bot = new \LINE\LINEBot(new CurlHTTPClient('your-channel-token'), [ 'channelSecret' => 'your-channel-secret' ]);
$textMessageBuilder = new \LINE\LINEBot\MessageBuilder\TextMessageBuilder('hello'); $response = $bot->replyMessage('your-reply-token', $textMessageBuilder);
See the official API documentation for more information.
A sample echo bot implementation.
A full-stack LINE Messaging API sample implementation. This sample shows you a practical use of the LINE Messaging API.