plusfriend / auto_reply

플러스친구 자동응답 API
307 stars 92 forks source link

잘못된 응답입니다. response is not OK(200) : 405 / Method Not Allowed #362

Open kwyes opened 7 years ago

kwyes commented 7 years ago

안녕하세요 자동응답 테스트를 진행하고있습니다. 서버는 IIS, PHP로하고잇는데.

test.com/autoreply2라는 섭폴더에 keyboard폴더랑 message폴더 두개를 생성하고

각각의 폴더에 index.php를 넣고 하고있습니다.

autoreply2/keyboard/index.php에서는 <?php

echo <<< EOD { "type" : "buttons", "buttons" : ["test", "test1"] } EOD; ?>

이런식이고 잘되고있는데 autoreply2/message/index.php에서는

<?php // 요청을 받아 저장 $data = json_decode(file_get_contents('php://input'), true); $content = $data["content"];

if($content == 'test') { echo <<< EOD { "message": { "text": "아직 개발중" } } EOD; } ?> 이런식으로하고있는데. response가 안되는데 문제가무엇일가요. 초급개발자라 아직모르는게많아서.

질문합니다.

Namnamseo commented 7 years ago

PHP 파일의 내용이 나오지가 않았습니다. 이슈를 수정해주세요.