我正在尝试在Ionic App中制作类似facebook的内容,但我只想要标记特定粉丝页面的图片。
我正在做这样的事情:
GET /v2.5/{{pageId}}/photos?type=tagged
在JavaScript中:
ngFB.api({
path: '/811154709006505/photos',
params: {type : 'tagged'}
}).then(
function (res) {
console.log(res);
},
function (error) {
alert('Facebook error: ' + error.error_description);
});
但它只返回created_at和照片ID和描述。在Graph API v2.3中,返回一个“image”值,其中包含“source”字段。我可以使用2.3版本吗?或者可以在v2.5中执行此操作?
答案 0 :(得分:0)
完成!只需要传递我想要的内容lol
ngFB.api({
path: '/811154709006505/photos',
params: {type : 'tagged',
fields : 'id,name,source,created_time'}
}).then(