메인 콘텐츠로 건너뛰기
GET
/
2
/
users
/
{id}
/
bookmarks
/
folders
/
{folder_id}
폴더 id로 북마크 조회
curl --request GET \
  --url https://api.x.com/2/users/{id}/bookmarks/folders/{folder_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "1346889436626259968"
    }
  ],
  "errors": [
    {
      "title": "<string>",
      "type": "<string>",
      "detail": "<string>",
      "status": 123
    }
  ],
  "meta": {
    "next_token": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://generaltranslation.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

인증

Authorization
string
header
필수

The access token received from the authorization server in the OAuth 2.0 flow.

경로 매개변수

id
string
필수

결과를 반환할 때 기준이 되는 인증된 소스 사용자의 id입니다. 이 사용자에 대한 고유 식별자입니다. 인증된 사용자와 동일한 값이어야 합니다.

예시:

"2244994945"

folder_id
string
필수

인증된 사용자가 게시물을 가져오려는 북마크 폴더의 id입니다. 이 Bookmark 폴더의 고유 식별자입니다.

Pattern: ^[0-9]{1,19}$
예시:

"1146654567674912769"

응답

요청이 성공했습니다.

data
object[]
errors
object[]
Minimum array length: 1

IETF RFC 7807(https://tools.ietf.org/html/rfc7807)에 정의된 HTTP Problem Details 객체

meta
object