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

잔글 (봇: 자동으로 텍스트 교체 (-== 참고 자료 == +==참고==))
 
26번째 줄: 26번째 줄:
*[[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 }}