카카오토큰 api 리턴 값이 없습니다

POST /oauth/token HTTP/1.1
Host: kauth.kakao.com
Content-type: application/x-www-form-urlencoded;charset=utf-8

이 API를 이용하는데 리턴값이 아무것도 넘어오지 않습니다.
무슨 문제일까요?

PHP로 작업중입니다.

    $params = array(
        "grant_type"    => "authorization_code",
        "client_id"     => $this->api->client_id,
        "redirect_uri"  => $this->api->redirect_uri,
        "code"          => $code
    );

    $this->http_info = array();
    $ch = curl_init(); 
    
    $this->api->curl_header = "Content-type: application/x-www-form-urlencoded;charset=utf-8";
    
    curl_setopt($ch, CURLOPT_URL           , $url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_TIMEOUT       , 36000);
    curl_setopt($ch, CURLOPT_USERAGENT     , $this->api->curl_useragent);
    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $this->api->curl_connect_time_out);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, $this->api->curl_ssl_verifypeer);
    curl_setopt($ch, CURLOPT_HTTPHEADER    , $this->api->curl_header); 

    if ( $this->api->curl_proxy ) {
        curl_setopt( $ch, CURLOPT_PROXY, $this->curl_proxy);
    }
            
    if ( $type == "POST" ) {
        curl_setopt($ch, CURLOPT_POST, 1);
        if ($params) curl_setopt( $ch, CURLOPT_POSTFIELDS, http_build_query($params) );
    }

    $response = curl_exec($ch);

안녕하세요~

var_dump($response); 출력 해보시겠어요?

Curl error: Failed to connect to kauth.kakao.com port 443: Connection timed out

에러 발생 후 에러 메세지 입니다.

앱 ID 알려주시면 서버로그 한번 확인해볼게요~

ID 538405

입니다. 감사합니다.

로그를 확인해보니 토큰 요청 로그가 하나도 없네요. 호출이 제대로 안된 것 같아요.

PHP 예제 코드 참고해보시겠어요?
https://devtalk.kakao.com/t/rest-api-php/115056

톤큰 가져오는 부분에…

502 Bad Gateway
nginx