エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント2件
- 注目コメント
- 新着コメント
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
LINE BOT APIを利用した地獄のミサワBOTの作り方 - Qiita
<?php $json_string = file_get_contents('php://input'); $jsonObj = json_decode($json_string); $to ... <?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と



2016/04/09 リンク