下準備
- Google Colabを開く(https://colab.research.google.com)
- LINE Channel SecretとChannel Access Tokenの取得(https://developers.line.biz/console)
※参考: Messaging APIを始めよう - ngrokのYour Authtokenの取得(https://ngrok.com/)
定数の定義
# LINEのチャネルシークレット
LINE_CHANNEL_SECRET = '下準備の値'
# LINEのチャネルアクセストークン
LINE_ACCESS_TOKEN = '下準備の値'
# ngrokのAuthtoken
NGROK_AUTHTOKEN = '下準備の値'
必要なライブラリのインストール&ngrokの初期化
!pip install flask
!pip install line-bot-sdk
!pip install pyngrok
!ngrok authtoken $NGROK_AUTHTOKEN
ngrokによるWebhook URL作成・設定
import os
from pyngrok import ngrok
from pyngrok.conf import PyngrokConfig
os.system('kill -9 $(pgrep ngrok)')
webhook_url = ngrok.connect(addr='127.0.0.1:5000', pyngrok_config=PyngrokConfig(start_new_session=True))
print (webhook_url)
出力された公開urlのhttpをhttpsに変更し、
https://developers.line.biz/console
[チャネル設定画面]>[Messaging API設定]内のWebhook URLに設定。
[Messaging API設定]>[LINE公式アカウント機能]>[あいさつメッセージ]の右側[編集]をクリック。
[応答メッセージ]をオフにし、[Webhook]をオンに変更。
おうむ返しBOTのプログラム入力
from flask import Flask, request, abort
from linebot import (
LineBotApi, WebhookHandler
)
from linebot.exceptions import (
InvalidSignatureError
)
from linebot.models import (
MessageEvent, TextMessage, TextSendMessage, ImageSendMessage,
)
app = Flask(__name__)
line_bot_api = LineBotApi(LINE_ACCESS_TOKEN)
handler = WebhookHandler(LINE_CHANNEL_SECRET)
@app.route("/test")
def test():
return "TEST OK"
@app.route("/", methods=['POST'])
def callback():
# get X-Line-Signature header value
signature = request.headers['X-Line-Signature']
# get request body as text
body = request.get_data(as_text=True)
app.logger.info("Request body: " + body)
# handle webhook body
try:
handler.handle(body, signature)
except InvalidSignatureError:
print("Invalid signature. Please check your channel access token/channel secret.")
abort(400)
return 'OK'
@handler.add(MessageEvent, message=TextMessage)
def handle_message(event):
line_bot_api.reply_message(
event.reply_token,
TextSendMessage(text=event.message.text),
)
if __name__ == '__main__':
app.run()
ただコピペ。
LINE友達登録
友達追加をして話しかけましょう。