最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

node.js - Why is my Facebook Graph API call to meaccounts returning an empty pages array? - Stack Overflow

programmeradmin1浏览0评论

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!

发布评论

评论列表(0)

  1. 暂无评论