最佳答案
我目前正在开发一个网络应用程序与 Facebook 图形应用程序接口。
我目前的目标是检索只有一个位置附加的职位。
虽然检索帖子有和没有位置已经工作,我不能检索只有位置的帖子。
检索这两种类型的查询如下所示: '/me/feed?fields=id,name,message,picture,place,with_tags&limit=100&with=location'
应该只检索带有位置的帖子的查询如下所示: /me/feed?fields=id,name,message,picture,place,with_tags&limit=100&with=location
我遇到的问题是,使用参数 &with=location
时,我在代码的这一部分得到了一个错误 Uncaught (in promise) undefined
:
if (response.paging && response.paging.next) {
recursiveAPICall(response.paging.next);
} else {
resolve(postsArr);
}
} else {
// Error message comes from here
reject();
}
日志显示如下:
DEBUG: -------------------------------
DEBUG: Ember : 2.4.5
DEBUG: Ember Data : 2.5.3
DEBUG: jQuery : 2.2.4
DEBUG: Ember Simple Auth : 1.1.0
DEBUG: -------------------------------
Object {error: Object}
error: Objectcode:
code: 1
1fbtrace_id: "H5cXMe7TJIn"
message: "An unknown error has occurred."
type: "OAuthException"
__proto__: Object
__proto__: Object
Uncaught (in promise) undefined
有人能解决这个问题吗?
有关代码的详细信息,请参阅我的 上一个问题。