> ## Documentation Index
> Fetch the complete documentation index at: https://generaltranslation.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# 기본 인증

<div id="basic-authentication">
  ## 기본 인증
</div>

X의 엔터프라이즈 API 중 상당수는 HTTP Basic 인증을 사용해야 합니다. Basic 인증이 필요한 API에 요청을 성공적으로 보내려면, 각 요청마다 유효한 이메일 주소와 비밀번호 조합을 Authorization 헤더로 전달해야 합니다. 이 이메일과 비밀번호 조합은 [enterprise API console](https://console.gnip.com/)에 접속할 때 사용하는 것과 동일하며, 이 콘솔 내에서 변경할 수 있습니다. 

Basic 인증을 사용해 요청을 구성할 때는, HTTPS를 통해 인코딩된 자격 증명 정보를 포함하는 `Authorization: Basic` HTTP 헤더를 추가해야 합니다.

다음 cURL 요청 예제에서, 요청을 보내기 전에 `<email_address>` 및 `<password>`를 사용자의 자격 증명 정보로 바꾸면 됩니다:

```bash theme={null}
curl -v --compressed -u<email_address>:<password>
    "https://gnip-api.x.com/search/30day/accounts/<account-name>/prod/counts.json?query=from%3Axdevelopers"
```

**기본 인증이 필요한 API:**

* [PowerTrack API](/ko/x-api/enterprise-gnip-2.0/powertrack-api) enterprise
* [Decahose stream API](http://localhost:3000/x-api/enterprise-gnip-2.0/fundamentals/decahose-api) enterprise
* [30-Day Search API](/ko/x-api/enterprise-gnip-2.0/fundamentals/search-api) enterprise
* [Full-Archive Search API](/ko/x-api/enterprise-gnip-2.0/fundamentals/search-api) enterprise
* [Usage API](/ko/x-api/enterprise-gnip-2.0/fundamentals/usage) enterprise
