Created
April 11, 2016 18:08
-
-
Save ko31/f2c6177e011502d35df85660e69b57cc to your computer and use it in GitHub Desktop.
【PHP】LINE BOT APIで作った画像検索ボットくん(テキスト送信のみ使用)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once('LineBot.php'); | |
// LINE:チャンネルID | |
$CHANNEL_ID = '[LINEのチャンネルID]'; | |
// LINE:チャンネルシークレット | |
$CHANNEL_SECRET = '[LINEのチェンネルシークレット'; | |
// LINE:MID | |
$CHANNEL_MID = '[LINEのMID]'; | |
$bot = new LineBot($CHANNEL_ID, $CHANNEL_SECRET, $CHANNEL_MID); | |
// テキスト送信 | |
$bot->sendText('「%s」デスネ...'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment