Rest api 호출 시 같은 도메인의 url인데 하나는 사용자링크 생성이 되고 하나는 안됩니다

https://devtalk.kakao.com/t/php-rest-api/14602

위에있는 php 로 restful api 호출하기 샘플을 따라서 링크기능을 연동하고 있는데요.

$test_site_url = ‘http://52.79.40.45?param1=test’;

//$test_site_url = ‘http://52.79.40.45/pc/u10_daily_detail.php?styleSerno=39&cur_page=1&category=

$res = $this->post_link($test_site_url, $story_common_params);
echo $res;
$obj = json_decode($res);

위와 같이 $test_site_url을 만들고 실행해보면 응답값이 나오는데
주석처리한 url을 $test_site_url 로 넣고 실행시켜보면 응답값이 나오지 않습니다.
같은 도메인인데 서브디렉토리가 있으면 안되는것인가요?
응답값이라도 나와야지 오류를 알 수 있을것같은데 응답값이 없어서 무슨오류인지
감을 잡기가 힘듭니다.
왜 저기 주석 처리 한 url로 링크 요청을 하면 응답값이 나오지 않는지 알 수 있을까요?

@ratm0424
샘플로 테스트 해봤는데… 저는 문제 없이 잘 되는데요… 작성하신 코드를 다시 확인해 보세요…

  public function test_link_post()
  {
    // 링크 포스팅
    $story_common_params = array();

    $story_common_params['content'] = '카카오스토리 링크 포스팅 테스트';

    $test_site_url = 'http://52.79.40.45/pc/u10_daily_detail.php?styleSerno=39&cur_page=1&category=';
    $res = $this->post_link($test_site_url, $story_common_params);
    echo $res;

    $obj = json_decode($res);
    $this->delete_mystory($obj->id); // 포스팅된 테스트 스토리 삭제.
  }