Skip to content

Instantly share code, notes, and snippets.

@ko31
Created April 11, 2016 18:04
Show Gist options
  • Save ko31/6608622825cd8d83abc56f71b82296cb to your computer and use it in GitHub Desktop.
Save ko31/6608622825cd8d83abc56f71b82296cb to your computer and use it in GitHub Desktop.
【PHP】LINE BOT APIで作った画像検索ボットくん
<?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