"Curl HTTP 기본 인증 통과"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-<source lang='cli'> +<source lang='console'>))
잔글 (봇: 자동으로 텍스트 교체 (-== 참고 자료 == +==참고==))
 
(다른 사용자 한 명의 중간 판 하나는 보이지 않습니다)
21번째 줄: 21번째 줄:
==같이 보기==
==같이 보기==
*[[curl Digest 인증 통과]]
*[[curl Digest 인증 통과]]
*[[curl WebDAV 파일 업로드]]
*[[curl]]
*[[curl]]
*[[HTTP 기본 인증]]
*[[HTTP 기본 인증]]
*[[PHP로 HTTP 기본 인증 구현]]
*[[PHP로 HTTP 기본 인증 구현]]


==참고 자료==
==참고==
*http://stackoverflow.com/questions/2044340/http-basic-authentication-whats-the-expected-browser-experience
*http://stackoverflow.com/questions/2044340/http-basic-authentication-whats-the-expected-browser-experience


[[분류: curl]]
[[분류: curl]]
[[분류: 인증]]
[[분류: 인증]]

2017년 6월 27일 (화) 02:30 기준 최신판

Curl HTTP 기본 인증 통과

1 방법[ | ]

명령어
curl -u 아이디:패스워드 URL주소
실행예시 (통과 못함)
[root@zetawiki ~]# curl http://zetawiki.com/ex/php/auth_basic.php
<meta charset="utf-8">로그인이 필요합니다.
실행예시 (통과함)
[root@zetawiki ~]# curl -u jmnote:P@ssw0rd http://zetawiki.com/ex/php/auth_basic.php
<meta charset="utf-8">jmnote 님 반갑습니다.

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}