> ## 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 statuses/update 및 POST를 사용해 왔다면 이 가이드가 도움이 될 것입니다. migrate를 다루는 X API v2 standard 티어 레퍼런스입니다.

## Standard v1.1과 X API v2 비교

standard v1.1 [POST statuses/update](https://developer.x.com/en/docs/twitter-api/v1/tweets/post-and-engage/api-reference/post-statuses-update) 및 [POST statuses/destroy/:id](https://developer.x.com/en/docs/twitter-api/v1/tweets/post-and-engage/api-reference/post-statuses-destroy-id) 엔드포인트를 사용해 왔다면, 이 가이드의 목표는 standard와 X API v2 manage Posts 엔드포인트의 공통점과 차이점을 이해하도록 돕는 것입니다.

* **공통점**
  * 인증
* **차이점**
  * 엔드포인트 URL

  * App 및 Project 요구사항

  * 요청 파라미터

### 공통점

**인증**

standard v1.1과 X API v2 manage Posts([POST statuses/update](https://developer.x.com/en/docs/twitter-api/v1/tweets/post-and-engage/api-reference/post-statuses-update) 및 [POST statuses/destroy/:id](https://developer.x.com/en/docs/twitter-api/v1/tweets/post-and-engage/api-reference/post-statuses-destroy-id)) 엔드포인트는 모두 [OAuth 1.0a User Context](https://developer.x.com/content/developer-twitter/resources/fundamentals/authentication)를 사용합니다. 따라서 이전에 standard v1.1 엔드포인트 중 하나를 사용하고 있었다면, X API v2 버전으로 마이그레이션하더라도 동일한 인증 방식을 계속 사용할 수 있습니다.

### 차이점

**엔드포인트 URL**

* Standard v1.1 엔드포인트:
  * [https://api.x.com/1.1/statuses/update.json](https://api.x.com/1.1/statuses/update.json)
    (게시물 생성)
  * `https://api.x.com/1.1/statuses/destroy/:id.json`
    (게시물 삭제)
* X API v2 엔드포인트:
  * [https://api.x.com/2/tweets](https://api.x.com/2/tweets)
    (게시물 생성)
  * [https://api.x.com/2/tweets/:id](https://api.x.com/2/tweets/:id)
    (지정된 게시물 삭제)

### App 및 Project 요구사항

X API v2 엔드포인트는 요청 인증 시 [Project](/resources/fundamentals/developer-apps)에 연결된 [developer App](/resources/fundamentals/developer-apps)의 자격 증명을 사용해야 합니다.
