Facebook Graph API 照片节点缺少属性

Missing attributes with Facebook Graph API Photo Node

我有一个访问令牌,范围为manage_pages。使用此令牌,我调用端点 specified here (GET /{page-id}/photos?type=uploaded).

由于某种原因,结果缺少除 idcreated_time 之外的所有属性。这是响应的一部分:

"data": [
  {
    "created_time": "2018-10-30T18:12:31+0000",
    "id": "1172525292900120"
  },
  {
    "created_time": "2018-10-30T18:10:08+0000",
    "id": "1172524459566870"
  }
]

文档说 data 应该包含 "A list of Photo nodes"。看看 the photo node docs,他们似乎完全符合您的期望。

我的应用还没有 Page Public Content Access 权限。但根据他们的 App Review 部分,访问我自己页面的内容不需要它。再一次,如果我无法访问该页面,我什至无法获得照片列表。

While you are testing your app and before you submit it for review, your app can only access content on a Page for which the following is true: The person who holds the admin role for the Page also holds an admin, developer, or tester role on the app.

为什么我在照片节点中缺少一些属性?

我必须像这样指定要检索的字段:GET /{page-id}/photos?type=uploaded&fields=images