0

我有一个 Facebook SDK Batch,其中一个请求返回以下错误:

"error": {
  "message": "Unsupported get request. Please read the Graph API documentation at https://developers.facebook.com/docs/graph-api",
  "type": "GraphMethodException",
  "code": 100
}

这是批次:

FB.api('/', 'POST', {
  batch: [
    {
      method : 'GET',
      name : 'user',
      relative_url : '/me'
    },
    { 
      method: 'GET', 
      name : 'post-ids',
      relative_url: '/group-id/feed?fields=id',
      omit_response_on_success : false
    },
    { 
      method : 'GET',
      name : 'post-data',
      relative_url : '?ids={result=post-ids:$.data.*.id}&fields=id,actions,application,from,to,message,message_tags,with_tags,picture,place,properties,source,status_type,link,description,caption,attachments,object_id,type,created_time,updated_time,likes.summary(1),comments.summary(1)',
      omit_response_on_success : false
    },
    {
      method : 'GET',
      name : 'post-user-info',
      relative_url : '/{result=post-data:$.data.*.from.id}/',
      omit_response_on_success : false
    },
    {
      method : 'GET',
      name : 'post-likes',
      relative_url : '?ids={result=post-ids:$.data.*.id}/likes?limit=5000',
      omit_response_on_success : false
    },
    {
      method : 'GET',
      name : 'post-comments',
      relative_url : '?ids={result=post-ids:$.data.*.id}/comments?fields=id,actions,application,from,to,message,message_tags,with_tags,picture,place,properties,source,status_type,link,description,caption,attachments,object_id,type,created_time,updated_time,likes.summary(1)&limit=5000',
      omit_response_on_success : false
    }
  ]
}, function (response) {

第四个请求,namepost-user-info是错误请求。基本上,对于每个帖子,我都想获取有关创建帖子的用户的信息(特别是个人资料图片)。最好的方法是什么?

4

0 回答 0