php
1$httpClient = new \LINE\LINEBot\HTTPClient\CurlHTTPClient($channel_access_token); 2$columns = []; 3 4$bot = new \LINE\LINEBot($httpClient, ['channelSecret' => $channel_secret]); 5$action = new \LINE\LINEBot\TemplateActionBuilder\UriTemplateActionBuilder("hoge", "https://example.com/" ); 6$column = new \LINE\LINEBot\MessageBuilder\TemplateBuilder\CarouselColumnTemplateBuilder("hoge", "huga", "https://placehold.jp/150x150.png", [$action]); 7$columns[] = $column; 8 9$carousel = new \LINE\LINEBot\MessageBuilder\TemplateBuilder\CarouselTemplateBuilder($columns); 10$carousel_message = new \LINE\LINEBot\MessageBuilder\TemplateMessageBuilder('aaaaa',$carousel); 11 12error_log(print_r($carousel_message,true),"3","/tmp/log.txt"); 13$response = $bot->broadcast($carousel_message);
このような感じでPHPのSDKを使ってみたのですが、error_logを仕込んだところまではくるのですが、$responseの下でerror_codeを入れるとなにも出力されません。
ただのTextMessageBuilderを使うと送信できたので、channel_secretなどが間違っているのは考えられません。どこがまちがっているのでしょうか。
1点、error_logを仕込んだところのoutputのtemplateが何もないので気にはなっていますが。。。
ご教授いただけると幸いです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。