이 가이드에서는 페이지 탭 리스트를 가져오는 방법을 설명합니다.
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 }, ...