개발자의 끄적끄적

[php] HTTP Status : 415 The server refused this request because the request entity is in a format not supported by the requested resource for the requested method 에러 해결방법 본문

개발/php

[php] HTTP Status : 415 The server refused this request because the request entity is in a format not supported by the requested resource for the requested method 에러 해결방법

효벨 2020. 12. 10. 03:00
728x90
반응형

[php] HTTP Status : 415 The server refused this request because the request entity is in a format not supported by the requested resource for the requested method 에러 해결방법

 

 

php 에서

 

curl을 이용하여 api 통신을 연동하던중

 

아래와 같은 오류가 발생해서 해결방법을 공유하려고 합니다.

 

The server refused this request because the request entity is in a format not supported by the requested resource for the requested method

 

저의 경우는 json 방식의 데이터를 주고받는 과정에서

 

위와같은 에러가 출력이 되어서 검색을 해봤습니다!

 

curl 옵션에서 HTTPHEADER 를 설정해주지 않아서 나오는 에러였습니다.

 

curl_setopt($ch, CURLOPT_HTTPHEADER, array("Accept: application/json","Content-Type: application/json"));

 

curl 구문에 위와 같은 json header 설정을 추가해주면 정상적으로 동작하실껍니다!

 

참고들 하세요!

반응형
Comments