以下のサイトを参考にPHPでLINEのメッセージを変更したいです。(Bot機能)
リンク内容
最後まで、実行しこのようなメッセージを取得しました。
mbp:baseballbot1011 yutanakai$ git push heroku master Everything up-to-date
おそらくデプロイは成功したはずです。
この状態で、手順に間違いがなけば、LINEにメッセージを送信すればおうむ返しされるはずですが、何も返信がありません。
webhook.phpのコードは以下です。
php
1<?php 2 3/** 4 * Copyright 2016 LINE Corporation 5 * 6 * LINE Corporation licenses this file to you under the Apache License, 7 * version 2.0 (the "License"); you may not use this file except in compliance 8 * with the License. You may obtain a copy of the License at: 9 * 10 * https://www.apache.org/licenses/LICENSE-2.0 11 * 12 * Unless required by applicable law or agreed to in writing, software 13 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 14 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 15 * License for the specific language governing permissions and limitations 16 * under the License. 17 */ 18 19require_once('./LINEBotTiny.php'); 20 21$channelAccessToken = '3ENAVejEiHo8nGiSQkxhbV4mt858J6PBl0u2ScmnDeJaWSTqwyWOOPbq70YTjxsn+N6LEJVpGXTZIv3vmimKFL1OpslcthNuI/MtirK9+5ruTSXhBS5owjxTIbBjg6K+tkFQSoLgj9oULZaEFAxN/QdB04t89/1O/w1cDnyilFU='; 22$channelSecret = 'abb0af32806f6d58706f30a71edd3be3'; 23 24$client = new LINEBotTiny($channelAccessToken, $channelSecret); 25foreach ($client->parseEvents() as $event) { 26 switch ($event['type']) { 27 case 'message': 28 $message = $event['message']; 29 switch ($message['type']) { 30 case 'text': 31 $client->replyMessage([ 32 'replyToken' => $event['replyToken'], 33 'messages' => [ 34 [ 35 'type' => 'text', 36 'text' => $message['text'] 37 ] 38 ] 39 ]); 40 break; 41 default: 42 error_log('Unsupported message type: ' . $message['type']); 43 break; 44 } 45 break; 46 default: 47 error_log('Unsupported event type: ' . $event['type']); 48 break; 49 } 50};
何か間違いがあるとすれば、なんでしょうか。言っていただければ編集します。
--------LINEの設定-------------
**Channel access token (long-lived) **
3ENAVejEiHo8nGiSQkxhbV4mt858J6PBl0u2ScmnDeJaWSTqwyWOOPbq70YTjxsn+N6LEJVpGXTZIv3vmimKFL1OpslcthNuI/MtirK9+5ruTSXhBS5owjxTIbBjg6K+tkFQSoLgj9oULZaEFAxN/QdB04t89/1O/w1cDnyilFU=
Channel secre
abb0af32806f6d58706f30a71edd3be3
Webhook URL Requires SSL
https://baseballbot1011.herokuapp.com/webhook.php
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。