前提・実現したいこと
[python]Heroku上でLINEBOTが受けたメッセージをgspreadを使い、googlesheetに一時的に保存して、その後chromeで検索したい
発生している問題・エラーメッセージ
はじめに”検索”というメッセージに対して返信しようとすると以下のエラーが出る
2021-05-13T02:16:43.067897+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=POST path="/callback" host=gspread0513.herokuapp.com request_id=8f48af82-0008-4d01-80eb-4aec1fe78cb4 fwd="147.92.149.166" dyno= connect= service= status=503 bytes= protocol=https
該当のソースコード
python
1一部???に変えています 2import gspread 3from selenium import webdriver 4from selenium.common.exceptions import WebDriverException 5from selenium.webdriver.common.action_chains import ActionChains 6import time 7import random 8from selenium.webdriver.chrome.options import Options 9from flask import Flask, request, abort 10from linebot import (LineBotApi, WebhookHandler) 11from linebot.exceptions import (InvalidSignatureError) 12from linebot.models import (MessageEvent, TextMessage, 13 TextSendMessage,FlexSendMessage,) 14import os 15import json 16import time 17#ServiceAccountCredentials:Googleの各サービスへアクセスできるservice変数を生成します。 18from oauth2client.service_account import ServiceAccountCredentials 19import chromedriver_binary 20 21#環境変数取得 22YOUR_CHANNEL_ACCESS_TOKEN = "???" 23YOUR_CHANNEL_SECRET = "???" 24line_bot_api = LineBotApi(YOUR_CHANNEL_ACCESS_TOKEN) 25handler = WebhookHandler(YOUR_CHANNEL_SECRET) 26 27app = Flask(__name__) 28 29@app.route("/") 30def test(): 31 return "正常に稼働しています" 32 33@app.route("/callback", methods=['POST']) 34def callback(): 35 # get X-Line-Signature header value 36 signature = request.headers['X-Line-Signature'] 37 # get request body as text 38 body = request.get_data(as_text=True) 39 app.logger.info("Request body: " + body) 40 # handle webhook body 41 try: 42 handler.handle(body, signature) 43 except InvalidSignatureError: 44 print("Invalid signature. Please check your channel access token/channel secret.") 45 abort(400) 46 return 'OK' 47 48@handler.add(MessageEvent, message=TextMessage) 49def handle_message(event): 50 #2つのAPIを記述しないとリフレッシュトークンを3600秒毎に発行し続けなければならない 51 scope = ['https://spreadsheets.google.com/feeds','https://www.googleapis.com/auth/drive'] 52 #認証情報設定 53 #ダウンロードしたjsonファイル名をクレデンシャル変数に設定(秘密鍵、Pythonファイルから読み込みしやすい位置に置く) 54 credentials = ServiceAccountCredentials.from_json_keyfile_name('???', scope) 55 #OAuth2の資格情報を使用してGoogle APIにログインします。 56 gc = gspread.authorize(credentials) 57 #共有設定したスプレッドシートキーを変数[SPREADSHEET_KEY]に格納する。 58 SPREADSHEET_KEY = '???' 59 #共有設定したスプレッドシートを開く 60 workbook = gc.open_by_key(SPREADSHEET_KEY) 61 # 存在するワークシートの情報を全て取得 62 worksheets = workbook.worksheets() 63#massageをもらうとsheettitleを確認・ifnotin新規作製する(rows=1000, cols=20) 64 title_list = [worksheet.title for worksheet in worksheets] 65 if event.source.user_id not in title_list: 66 workbook.add_worksheet(title=event.source.user_id, rows=1000, cols=20) 67 worksheet = workbook.worksheet(event.source.user_id) 68#入力された文はevent.message.textに入る 69 if "検索" in event.message.text: 70 #検索ワードを入力してもらう 71 line_bot_api.reply_message(event.reply_token,TextSendMessage(text="@の後に続けて検索ワードを送ってね")) 72 73 elif '@' in event.message.text : 74 #A列の末行に入れる 75 ID = event.message.text.replace("@", "") 76 #A列のデータを配列として取得、連続している値のみ 77 A_COL_ARRAY = worksheet.col_values(1) 78 worksheet.update_cell(len(A_COL_ARRAY)+1, 1,ID) 79 #最終確認 80 ID = worksheet.cell(len(A_COL_ARRAY), 1).value 81 reply = "ID\n検索しますか?" 82 line_bot_api.push_message(event.source.user_id,TextSendMessage(text=reply)) 83 b = open("conform2.json", 'r', encoding="utf-8") 84 bubble = json.load(b) 85 alt_text="python 検索" 86 contents=bubble 87 line_bot_api.reply_message(event.reply_token, FlexSendMessage(alt_text=alt_text, contents=contents)) 88 b.close() 89 90 elif 'start' in event.message.text : 91 line_bot_api.reply_message(event.reply_token,TextSendMessage(text="検索します")) 92 #確認 93 A_COL_ARRAY = worksheet.col_values(1) 94 ID = worksheet.cell(len(A_COL_ARRAY), 1).value 95 96# chromedriverのPATHを指定(herokuにおけるパスを指定しています) 97 driver_path = '/app/.chromedriver/bin/chromedriver' 98 options = webdriver.ChromeOptions() 99 options.add_argument('--headless') 100 #driverに設定 ※optionsを指定しないとheadlessにならないので注意 101 driver = webdriver.Chrome(options=options, executable_path=driver_path) 102 driver.get('???') 103 ------------検索------------------ 104 driver.close() 105 106 107if __name__ == "__main__": 108 app.run() 109
試したこと
importしたchromedriver_binaryを使っていましたが、以下の2つをbuildpackに追加しました
https://github.com/heroku/heroku-buildpack-google-chrome.git
https://github.com/heroku/heroku-buildpack-chromedriver.git
デプロイは問題なくできています
補足情報(FW/ツールのバージョンなど)
Python 3.7.9、windows10
あなたの回答
tips
プレビュー