<?php $json_string = file_get_contents('php://input'); $jsonObj = json_decode($json_string); $to = $jsonObj->{"result"}[0]->{"content"}->{"from"}; // テキストで返事をする場合 $response_format_text = ['contentType'=>1,"toType"=>1,"text"=>"hello"]; // 画像で返事をする場合 $response_format_image = ['contentType'=>2,"toType"=>1,'originalContentUrl'=>"画像URL","previewImageUrl"=>"サムネイル画像URL"]; // 他にも色々ある // .... // toChannelと