Skip to content

Instantly share code, notes, and snippets.

View tickstudiu's full-sized avatar
🏠
Working from home

Wanx2 tickstudiu

🏠
Working from home
  • com7
  • thailand phuket
View GitHub Profile
@tickstudiu
tickstudiu / LINEBOT
Created May 29, 2019 10:02 — forked from aeknarinamn/LINEBOT.PHP
LINE BOT EXAMPLE PHP EP1
<?php
/*Get Data From POST Http Request*/
$datas = file_get_contents('php://input');
/*Decode Json From LINE Data Body*/
$deCode = json_decode($datas,true);
file_put_contents('log.txt', file_get_contents('php://input') . PHP_EOL, FILE_APPEND);
$replyToken = $deCode['events'][0]['replyToken'];