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

# Follows 엔드포인트 마이그레이션 개요

> Standard v1.1 friendships 엔드포인트에서 X API v2 follows 엔드포인트로 followers, following, follow 관리를 매개변수 매핑과 함께 마이그레이션합니다.

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>;
};

## X API의 follows 엔드포인트 비교

### Follows lookup

v2 follows lookup 엔드포인트는 standard v1.1의 [followers/ids](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-followers-ids), v1.1 [followers/list](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-followers-list), v1.1 [friends/ids](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-friends-ids) 및 v1.1 [friends/list](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-friends-list) 엔드포인트를 대체합니다.

다음 표는 다양한 유형의 follows lookup 엔드포인트를 비교합니다:

|                                                                                                                             |                                                                                                                                                                |                                                                                                                                                                                                                                                       |
| :-------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **Description**                                                                                                             | **Standard v1.1**                                                                                                                                              | **X API v2**                                                                                                                                                                                                                                          |
| 지원되는 HTTP 메서드                                                                                                               | `GET`                                                                                                                                                          | `GET`                                                                                                                                                                                                                                                 |
| Host 도메인                                                                                                                    | `https://api.x.com`                                                                                                                                            | `https://api.x.com`                                                                                                                                                                                                                                   |
| 엔드포인트 경로                                                                                                                    | /1.1/friends/ids.json<br /><br />/1.1/friends/list.json<br /><br />/1.1/followers/ids.json<br /><br />/1.1/followers/list.json                                 | /2/users/:id/following<br /><br />/2/users/:id/followers                                                                                                                                                                                              |
| [인증](/resources/fundamentals/authentication)                                                                                | OAuth 1.0a User Context<br /><br />App only                                                                                                                    | OAuth 1.0a User Context<br /><br />OAuth 2.0 Authorization Code with PKCE<br /><br />App only                                                                                                                                                         |
| 기본 요청 [rate limit](/resources/fundamentals/rate-limits)                                                                     | 15분당 15회 요청 (사용자당)<br /><br />15분당 15회 요청 (app당)                                                                                                               | 15분당 15회 요청 (사용자당)<br /><br />15분당 15회 요청 (app당)                                                                                                                                                                                                      |
| 응답당 최대 사용자 수                                                                                                                | GET friends/id 및 GET followers/id는 페이지당 최대 5000개의 사용자 ID를 반환합니다.<br /><br />  <br /><br />GET friends/list 및 GET followers/list는 페이지당 최대 200개의 user 객체를 반환합니다. | 페이지당 1000개의 user 객체                                                                                                                                                                                                                                   |
| 페이지네이션                                                                                                                      | 토큰이 next\_cursor 필드로 반환되며, 이는 cursor 매개변수의 값으로 전달하여 다음 페이지 결과를 반환할 수 있습니다.                                                                                     | 토큰이 next\_token 필드로 반환되며, 이는 token 매개변수의 값으로 전달하여 다음 페이지 결과를 반환할 수 있습니다.<br /><br />v2 페이로드는 previous\_token 필드도 제공하며, 이 또한 pagination\_token 매개변수와 함께 전달하여 이전 페이지 결과를 반환할 수 있습니다.                                                                    |
| JSON 형식                                                                                                                     | Standard v1.1 형식                                                                                                                                               | [X API v2 형식](/x-api/fundamentals/data-dictionary) (fields 및 expansions 요청 매개변수에 의해 결정되며, v1.1 형식과 하위 호환되지 않음)<br /><br />Standard v1.1 형식에서 X API v2 형식으로 마이그레이션하는 방법에 대한 자세한 내용은 [데이터 형식 마이그레이션 가이드](/x-api/migrate/data-format-migration)를 참조하십시오. |
| 페이로드에 반환될 [fields](/x-api/fundamentals/data-dictionary) 선택 지원                                                               |                                                                                                                                                                | ✔                                                                                                                                                                                                                                                     |
| Post [annotations](/x-api/fundamentals/post-annotations) 필드 지원                                                              |                                                                                                                                                                | ✔                                                                                                                                                                                                                                                     |
| 새로운 [metrics](/x-api/fundamentals/metrics) 필드 요청 지원                                                                         |                                                                                                                                                                | ✔                                                                                                                                                                                                                                                     |
| [conversation\_id](/x-api/fundamentals/conversation-id) 필드 지원                                                               |                                                                                                                                                                | ✔                                                                                                                                                                                                                                                     |
| [project](/resources/fundamentals/developer-apps)와 연결된 [developer App](/resources/fundamentals/developer-apps)의 자격 증명 사용 필요 |                                                                                                                                                                | ✔                                                                                                                                                                                                                                                     |

#### Manage follows

v2 manage follows 엔드포인트는 standard v1.1의 [POST friendships/create](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/post-friendships-create) 및 [POST friendships/destroy](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/post-friendships-destroy) 엔드포인트를 대체합니다.

다음 표는 standard v1.1과 X API v2의 follow 생성 엔드포인트를 비교합니다:

#### 사용자 팔로우

| Description                                                                                                                 | Standard v1.1                          | X API v2                                                                  |
| :-------------------------------------------------------------------------------------------------------------------------- | :------------------------------------- | :------------------------------------------------------------------------ |
| 지원되는 HTTP 메서드                                                                                                               | POST                                   | POST                                                                      |
| Host 도메인                                                                                                                    | [https://api.x.com](https://api.x.com) | [https://api.x.com](https://api.x.com)                                    |
| 엔드포인트 경로                                                                                                                    | /1.1/friendships/create.json           | /2/users/:id/following                                                    |
| [인증](/resources/fundamentals/authentication)                                                                                | OAuth 1.0a User Context                | OAuth 1.0a User Context<br /><br />OAuth 2.0 Authorization Code with PKCE |
| 기본 요청 [rate limit](/resources/fundamentals/rate-limits)                                                                     | 15분당 50회 요청                            | 15분당 50회 요청                                                               |
| 사용자당 일일 최대 작업 수                                                                                                             | 400                                    | 400                                                                       |
| app당 일일 최대 작업 수                                                                                                             | 1000                                   | 1000                                                                      |
| [Project](/resources/fundamentals/developer-apps)와 연결된 [developer App](/resources/fundamentals/developer-apps)의 자격 증명 사용 필요 |                                        | ✔️                                                                        |

#### 사용자 언팔로우

다음 표는 standard v1.1과 X API v2의 follow 삭제 엔드포인트를 비교합니다:

| Description                                                                                                                 | Standard v1.1                          | X API v2                                                                  |
| :-------------------------------------------------------------------------------------------------------------------------- | :------------------------------------- | :------------------------------------------------------------------------ |
| 지원되는 HTTP 메서드                                                                                                               | POST                                   | DELETE                                                                    |
| Host 도메인                                                                                                                    | [https://api.x.com](https://api.x.com) | [https://api.x.com](https://api.x.com)                                    |
| 엔드포인트 경로                                                                                                                    | /1.1/friendships/destroy.json          | /2/users/:source\_user\_id/following/:target\_user\_id                    |
| [인증](/resources/fundamentals/authentication)                                                                                | OAuth 1.0a User Context                | OAuth 1.0a User Context<br /><br />OAuth 2.0 Authorization Code with PKCE |
| 기본 요청 [rate limit](/resources/fundamentals/rate-limits)                                                                     | 15분당 15회 요청 (사용자당)                     | 15분당 50회 요청 (사용자당)                                                        |
| app당 일일 최대 작업 수                                                                                                             | 없음                                     | 500                                                                       |
| [Project](/resources/fundamentals/developer-apps)와 연결된 [developer App](/resources/fundamentals/developer-apps)의 자격 증명 사용 필요 |                                        | ✔️                                                                        |

**기타 마이그레이션 리소스**

[Follows lookup: Standard v1.1에서 X API v2로](/x-api/users/follows/migrate/standard-to-twitter-api-v2)

[Manage follows: Standard v1.1에서 X API v2로](/x-api/users/follows#manage-follows-standard-v1-1-compared-to-x-api-v2)

[X API 마이그레이션 허브](/x-api/migrate/overview)
