在文字方塊裡面加入 https://github.com/helgesander02/linebot_flask/blob/main/render.yaml ,按continue開始建立。
name : 這是建立在Render裡 Web Service 名稱。
repo : 這是連結LineBot專案 GitHub連結。
buildCommand : 這是在雲端安裝套件,通常都寫在requirements.txt裡面。
startCommand : 這是Web與LineBot的連線
https://developers.line.biz/en/
LINE_CHANNEL_ACCESS_TOKEN
LINE_CHANNEL_SECRET
Service Group Name填入名字
將兩個Key填入LINE_CHANNEL_ACCESS_TOKEN與LINE_CHANNEL_SECRET的Value
把環境變數輸入到LineBot_API
line_bot_api = LineBotApi(os.getenv('LINE_CHANNEL_ACCESS_TOKEN'))
handler = WebhookHandler(os.getenv('LINE_CHANNEL_SECRET'))
最後把Render產出的網址貼到Webhook URL加上/callback就能測試LineBot了
要記得到管理平台把Webhook打開