페이지 탭

이 가이드에서는 페이지 탭 리스트를 가져오는 방법을 설명합니다.

2022년 6월 30일부터 /PAGE-ID/tabs 엔드포인트에 대한 액세스는 최근 90일 이내에 해당 엔드포인트에 액세스했던 앱으로 제한됩니다.

시작하기 전에

페이지 탭을 읽으려면 다음 항목이 필요합니다.

  • 페이지에서 MANAGE 작업을 수행할 수 있는 사용자가 요청한 페이지 액세스 토큰
  • pages_manage_metadata 권한

페이지에서 작업을 수행할 수 없는 경우 다음 항목이 필요합니다.

  • 페이지 전체 공개 콘텐츠 액세스 기능
페이지 전체 공개 콘텐츠 액세스 기능을 사용할 때 사용 제한 문제를 방지하려면 시스템 사용자 액세스 토큰을 사용하는 것이 좋습니다.

페이지 탭을 만들려면 다음 항목이 필요합니다.

  • 페이지에서 MANAGE 작업을 수행할 수 있는 사용자가 요청한 페이지 액세스 토큰
  • pages_manage_metadata 권한

탭 정보 가져오기

/{page-id}/tabs 엔드포인트에 GET 요청을 보냅니다.

curl -i -X GET "https://graph.facebook.com/{page-id}/tabs

성공할 경우 앱에서 다음과 같은 응답을 받습니다.

{
  "data": [
    {
      "id": "19292868552/tabs/posts",
      "name": "Posts",
      "link": "/FacebookforDevelopers/posts/",
      "is_permanent": true,
      "position": 1,
      "is_non_connection_landing_tab": false
    },
    {
      "id": "19292868552/tabs/videos",
      "name": "Videos",
      "link": "/FacebookforDevelopers/videos/",
      "is_permanent": true,
      "position": 2,
      "is_non_connection_landing_tab": false
    },
    {
      "id": "19292868552/tabs/about",
      "name": "About",
      "link": "/FacebookforDevelopers/about/",
      "is_permanent": true,
      "position": 3,
      "is_non_connection_landing_tab": false
    },
...