Question: I’m building a Node.js application that registers users through Facebook. In my registration flow, I need to fetch the list of Facebook pages the user manages. I’m using the following code snippet to get the user’s profile and then their pages:
const userResponse = await axios.get(
`,email,name`,
{
params: { access_token: accessToken },
}
);
const pageResponse = await axios.get(
`.0/${userResponse.data.id}/accounts?access_token=${accessToken}`
);
console.log(pageResponse.data);
The problem is that pageResponse.data is returning an empty array, even though I own at least one Facebook page.
I’ve checked the following: • The access token is valid. • The user is an admin of the page. enter code here
I suspect it might be related to missing permissions. The Facebook API error message mentions that this endpoint requires one of the following permissions/features: • pages_read_engagement • Page Public Content Access • Page Public Metadata Access ( i added them all ) /
Questions:
1. What permissions do I need to request for my access token in order to successfully fetch the pages data via /me/accounts?
2. Is there any change in the API behavior for the /me/accounts endpoint in version v22.0 that might cause it to return an empty array?
3. Are there any additional considerations or debugging steps that could help identify why the pages array is empty?
Any insights or suggestions to resolve this issue would be greatly appreciated!