|
@@ -54,6 +54,13 @@ handler = WebhookHandler('58a73d69c3ad6416e0b465e64c30526a')
|
|
|
#line_bot_api = LineBotApi('YOUR_CHANNEL_ACCESS_TOKEN')
|
|
|
#handler = WebhookHandler('YOUR_CHANNEL_SECRET')
|
|
|
|
|
|
+@app.get("/msg2/{item_id}")
|
|
|
+async def coffee_msg2(item_id):
|
|
|
+ line_bot_api.push_message(item_id, TextSendMessage(text='Jared 測試....開啟下方完整券樣(密碼9888)至櫃台掃碼兌換。https://txp.rs/v/EvX69b4Xq9'))
|
|
|
+ line_bot_api.push_message(item_id, ImageSendMessage('https://cal.ptt.cx:5443/static/images/finalcoupon.png', 'https://cal.ptt.cx:5443/static/images/finalcoupon.png') )
|
|
|
+ print('send images')
|
|
|
+ return {"code":"ok" }
|
|
|
+
|
|
|
|
|
|
@app.get("/msg/{item_id}")
|
|
|
async def coffee_msg(item_id):
|