Created
April 11, 2016 18:04
-
-
Save ko31/6608622825cd8d83abc56f71b82296cb 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]'; | |
// Bingアカウントキー | |
$ACCOUNT_KEY = '[Bing Search APIのアカウントキー]'; | |
$bot = new LineBot($CHANNEL_ID, $CHANNEL_SECRET, $CHANNEL_MID); | |
// テキスト送信 | |
$bot->sendText('「%s」デスネ...'); | |
// 画像送信 | |
$bot->sendImage($ACCOUNT_KEY); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment