Movatterモバイル変換


[0]ホーム

URL:


  1. 개발자를 위한 웹 기술
  2. HTTP
  3. Reference
  4. HTTP 헤더
  5. Authorization

This page was translated from English by the community.Learn more and join the MDN Web Docs community.

View in EnglishAlways switch to English

Authorization

Baseline Widely available *

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨2015년 7월⁩.

* Some parts of this feature may have varying levels of support.

HTTPAuthorization 요청 헤더는 서버의 사용자 에이전트임을 증명하는 자격을 포함하여, 보통 서버에서401Unauthorized 상태를WWW-Authenticate 헤더로 알려준 이후에 나옵니다.

헤더 타입Request header
Forbidden header name아니오

문법

Authorization: <type> <credentials>

지시자

<type>

인증 타입. 보통 타입은"Basic"이며. 다른 타입으로:

<credentials>

만약 "Basic" 인증 스킴이 사용되었다면, 증명은 다음과 같이 만들어집니다:

  • 사용자명과 비밀번호가 콜론을 이용하여 합쳐집니다(aladdin:opensesame).
  • 그 결과에 대한 문자열을base64 로 인코딩합니다 (YWxhZGRpbjpvcGVuc2VzYW1l).

참고 :Base64 인코딩은 암호화나 해싱을 의미하지 않습니다! 이 방법은 인증에 대해서 문자를 그대로 보내는 것과 동일하다고 할 수 있습니다 (base64인코딩은 복호화 가능). Basic 인증을 하는 경우 HTTPS로 접속하는 것을 권장합니다.

예제

Authorization: Basic YWxhZGRpbjpvcGVuc2VzYW1l

HTTP basic 인증을 사용하여 비밀번호를 보호하기 위해 Apache 또는 nginx 서버를 어떻게 설정해야 하는지 예제를 보기 위해서는HTTP authentication 를 보시기 바랍니다.

기술 사양

기술 사양제목
RFC 7235, 섹션 4.2: AuthorizationHTTP/1.1: Authentication
RFC 7617The 'Basic' HTTP Authentication Scheme

함께 더 보기

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp