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

> v1.1 timelines 엔드포인트(statuses/user\_timeline 및)를 사용해 왔다면 이 가이드가 도움이 될 것입니다. migrate를 다루는 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>;
};

## Standard v1.1 timelines에서 X API v2 timelines로

v1.1 timelines 엔드포인트(statuses/user\_timeline 및 statuses/mentions\_timeline)를 사용해 왔다면, 이 가이드의 목표는 standard와 X API v2 timelines 엔드포인트의 공통점과 차이점을 이해하여 현재의 통합을 새 버전으로 마이그레이션할 수 있도록 돕는 것입니다.

* **공통점:**
  * 인증:
    * OAuth 1.0a User Context (역시간순 홈 타임라인, user Post 타임라인, user mentions 타임라인)
    * OAuth 2.0 App-Only (user Post 타임라인)
  * 과거 데이터 액세스 제한: User timeline(user Post 타임라인)은 가장 최근 3200개의 게시물에 대한 액세스를 제공하며, mentions timeline(user mention 타임라인)은 가장 최근 800개의 멘션에 대한 액세스를 제공합니다.
  * Post 편집 히스토리 및 메타데이터 지원
  * Rate limit (user Post 타임라인)
  * 새로고침 폴링: since\_id 이후 새 결과를 조회하는 기능
  * Post ID로 타임라인 탐색
  * 결과 사양:
    * 결과 순서: 역시간순으로 반환된 결과
    * 답글 제외 기능 (user Post 타임라인 전용)
    * 리트윗 제외 기능 (user Post 타임라인 전용)
* **차이점**
  * 새로운 인증 기능:
    * OAuth 2.0 App-Only (user mention 타임라인)
    * OAuth 2.0 Authorization Code Flow with PKCE (역시간순 홈 타임라인, user Post 타임라인, user mentions 타임라인)
  * 액세스 요구사항: X API v2 App 및 Project 요구사항
  * Rate limit (user mention 타임라인 및 역시간순 홈 타임라인)
  * 추가 페이지네이션 방식
    * 응답당 max\_results(count) 차이
  * 응답 데이터 형식
  * 요청 파라미터
    * 사용자 지정
