> ## 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.

# 리스트 멤버 관리

export const Button = ({href, children}) => {
  return <div className="not-prose group">
    <a href={href}>
      <button className="flex items-center space-x-2.5 py-1 px-4 bg-primary-dark dark:bg-white text-white dark:text-gray-950 rounded-full group-hover:opacity-[0.9] font-medium">
        <span>
          {children}
        </span>
        <svg width="3" height="24" viewBox="0 -9 3 24" class="h-6 rotate-0 overflow-visible"><path d="M0 0L3 3L0 6" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"></path></svg>
      </button>
    </a>
  </div>;
};

<div id="manage-list-members-standard-v11-compared-to-x-api-v2">
  ### 리스트 멤버 관리: standard v1.1과 X API v2 비교
</div>

standard v1.1의 [POST lists/members/create](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/create-manage-lists/api-reference/post-lists-members-create) 및 [POST lists/members/destroy](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/create-manage-lists/api-reference/post-lists-members-destroy) 엔드포인트를 사용해 왔다면, 이 가이드는 standard v1.1과 X API v2의 리스트 멤버 관리 엔드포인트 간 유사점과 차이점을 이해하는 데 도움을 주기 위한 것입니다.

* **유사점**
  * 인증
* **차이점**
  * 엔드포인트 URL
  * App 및 프로젝트 요구 사항
  * HTTP 메서드
  * 요청 한도
  * 요청 매개변수

<div id="similarities">
  #### 유사점
</div>

**인증**

두 버전의 엔드포인트는 모두 [OAuth 1.0a User Context](https://developer.x.com/content/developer-twitter/resources/fundamentals/authentication)를 지원합니다. 따라서 이전에 표준 v1.1의 리스트 멤버 관리 엔드포인트 중 하나를 사용해 오셨다면, X API v2로 마이그레이션하더라도 동일한 인증 방식을 계속 사용할 수 있습니다.

<div id="differences">
  #### 차이점
</div>

**엔드포인트 URL**

* Standard v1.1 엔드포인트:
  * POST [https://api.x.com/1.1/lists/members/create.json](https://api.x.com/1.1/lists/members/create.json)
    (지정된 리스트에 구성원을 추가합니다)
  * POST [https://api.x.com/1.1/lists/members/destroy.json](https://api.x.com/1.1/lists/members/destroy.json)
    (지정된 리스트에서 구성원을 제거합니다)
* X API v2 엔드포인트:
  * POST [https://api.x.com/2/lists/:id/members](https://api.x.com/2/lists/:id/members)
    (지정된 리스트에 구성원을 추가합니다)

  * DELETE [https://api.x.com/2/lists/:id/members/:user\&#95;id](https://api.x.com/2/lists/:id/members/:user\&#95;id)
    (지정된 리스트에서 구성원을 제거합니다)

**요청 한도**

| **Standard v1.1**                               | **X API v2**                                                                                                                                    |
| :---------------------------------------------- | :---------------------------------------------------------------------------------------------------------------------------------------------- |
| /1.1/lists/members/create.json<br /><br />none  | /2/lists/:id/members<br /><br />OAuth 1.0a User Context로 15분당 300회 요청<br /><br />OAuth 2.0 Authorization Code with PKCE로 15분당 300회 요청           |
| /1.1/lists/members/destroy.json<br /><br />none | /2/lists/:id/members/:user\_id<br /><br />OAuth 1.0a User Context로 15분당 300회 요청<br /><br />OAuth 2.0 Authorization Code with PKCE로 15분당 300회 요청 |

**App 및 Project 요구 사항**

X API v2 엔드포인트를 사용하려면 요청을 인증할 때 [Project](/ko/resources/fundamentals/developer-apps)와 연결된 [developer App](/ko/resources/fundamentals/developer-apps)의 자격 증명을 사용해야 합니다. 모든 X API v1.1 엔드포인트는 App 또는 Project와 연결된 App의 자격 증명을 사용할 수 있습니다.

**요청 매개변수**

다음 Standard v1.1 요청 매개변수는 X API v2에서 다음과 같이 매핑됩니다.

| **Standard v1.1**   | **X API v2** |
| :------------------ | :----------- |
| list\_id            | id           |
| slug                | 해당 없음        |
| screen\_name        | 해당 없음        |
| owner\_screen\_name | 해당 없음        |
| owner\_id           | 해당 없음        |
