我正在尝试为我的api调用facebook的javascript sdk添加参数。到目前为止所有的调用都有效,但是我在向图片添加参数方面遇到了问题,我希望返回一张大图片或者能够指定高度和宽度。
FB.api('/me', {
fields: [
'last_name',
'first_name',
'email',
'location',
'picture'
],
parameters: {
type: 'large'
}
)
我想保留调用的语法,因为它非常易读,我想将大型类型添加到图片字段
答案 0 :(得分:1)
你这样做了吗?
FB.api('/me', {fields: 'last_name,first_name,email,location,picture.type(large)'}, (response) => () {
console.log(response);
});
我从未在任何文档中看到fields参数为数组,您应该使用字符串。