Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 리눅스
- 제이쿼리
- Eclipse
- 공모주 청약
- php
- SQL
- 주식
- 공모주 청약 일정
- Oracle
- 주식 청약
- 자바스크립트
- MYSQL
- jquery
- 자바
- 7월 공모주 청약 일정
- codeigniter
- linux
- 맥
- 6월 공모주 청약 일정
- Stock ipo
- 주식 청약 일정
- Stock
- JavaScript
- 공모주
- html
- java
- IPO
- css
- 오라클
- 코드이그나이터
Archives
- Today
- Total
개발자의 끄적끄적
[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:00728x90
반응형
[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 설정을 추가해주면 정상적으로 동작하실껍니다!
참고들 하세요!
반응형
'개발 > php' 카테고리의 다른 글
[php] 문자열 바꾸기 함수 substr_replace() 사용법 및 예제 (0) | 2020.12.12 |
---|---|
[php] StdClass to array 변환 방법 및 예제 (0) | 2020.12.11 |
[php] Access-Control-Allow-Origin 설정방법 (0) | 2020.12.09 |
[php] 문자열 비교함수 strcmp 사용법 및 예제 (0) | 2020.12.08 |
[php/codeigniter] $this->db->empty_table() 사용법 (0) | 2020.12.08 |
Comments