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

# v1에서 v2로

> standard v1.1 POST lists/create, POST lists/destroy 및 POST 엔드포인트를 사용해 왔다면 이 가이드가 도움이 됩니다. 마이그레이션을 다루는 X API v2 standard 티어 레퍼런스입니다.

export const Button = ({href, children}) => {
  return <div className="not-prose">
    <a href={href}>
      <button className="x-btn">
        <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>;
};

### Manage Lists: standard v1.1과 X API v2 비교

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

* **유사점**
  * 인증
* **차이점**
  * 엔드포인트 URL
  * App 및 Project 요구사항
  * HTTP 메서드
  * Rate limit
  * 요청 매개변수

#### 유사점

**인증**

두 엔드포인트 버전 모두 [OAuth 1.0a User Context](https://developer.x.com/content/developer-twitter/resources/fundamentals/authentication)를 지원합니다. 따라서 이전에 standard v1.1 manage Lists 엔드포인트 중 하나를 사용했다면 X API v2 버전으로 마이그레이션할 때도 동일한 인증 방식을 계속 사용할 수 있습니다.

#### 차이점

**엔드포인트 URL**

* Standard v1.1 엔드포인트:
  * POST [https://api.x.com/1.1/lists/create.json](https://api.x.com/1.1/lists/create.json)
    (List 생성)
  * POST [https://api.x.com/1.1/lists/destroy.json](https://api.x.com/1.1/lists/destroy.json)
    (List 삭제)
  * POST [https://api.x.com/1.1/lists/update.json](https://api.x.com/1.1/lists/update.json)
    (List 업데이트)
* X API v2 엔드포인트:
  * POST [https://api.x.com/2/lists](https://api.x.com/2/lists)
    (List 생성)

  * DELETE [https://api.x.com/2/lists/:id](https://api.x.com/2/lists/:id)
    (List 삭제)

  * PUT [https://api.x.com/2/lists/:id](https://api.x.com/2/lists/:id)
    (List 업데이트)

**Rate limit**

\| **Standard v1**
