Notice
Recent Posts
Recent Comments
Link
투케이2K
151. [참고 사이트] [CURL] curl 명령어를 특정 소스 코드로 ( java , Js , Python , php , node 등 ) 변환해주는 온라인 참고 사이트 본문
참고 사이트
151. [참고 사이트] [CURL] curl 명령어를 특정 소스 코드로 ( java , Js , Python , php , node 등 ) 변환해주는 온라인 참고 사이트
투케이2K 2024. 11. 1. 19:47[참고 사이트]
제목 : [CURL] curl 명령어를 특정 소스 코드로 ( java , Js , Python , php , node 등 ) 변환해주는 온라인 참고 사이트
[설 명]
// --------------------------------------------------------------------------------------
[방법 설명]
// --------------------------------------------------------------------------------------
1. curl 명령어 커맨드 복사 수행
>> 예시 : curl -k -X GET 'https://jsonplaceholder.typicode.com/posts?userId=1&id=1' -H 'Content-Type: application/x-www-form-urlencoded;'
2. 해당 온라인 사이트 접속 및 curl 명령어 커맨드 붙여 넣기
3. curl 명령어를 특정 소스코드로 변환하기 위한 언어 선택
>> 예시 : 자바스크립트 XMLHttpRequest 선택
4. http 통신으로 curl 요청을 수행할 수 있는 결과 확인
let xhr = new XMLHttpRequest();
xhr.withCredentials = true;
xhr.open('GET', 'https://jsonplaceholder.typicode.com/posts?userId=1&id=1');
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded;');
xhr.onload = function() {
console.log(xhr.response);
};
xhr.send();
// --------------------------------------------------------------------------------------
// --------------------------------------------------------------------------------------
[참고 사이트]
// --------------------------------------------------------------------------------------
[Curl >> 특정 언어로 변경 온라인 참고 사이트]
https://curlconverter.com/python/
[Curl 명령어 예시 참고 사이트]
https://blog.naver.com/kkh0977/223515003502?trackingCode=blog_bloghome_searchlist
// --------------------------------------------------------------------------------------
반응형
'참고 사이트' 카테고리의 다른 글
Comments