我使用了几种类型的网址:
FB.api('/me?fields=cover', function(response) {
FB.api('/{userid}?fields=cover', function(response) {
FB.api('/{userid}/fields=cover', function(response) {
但也只获得facebook id。 我可以在代码中获取用户个人资料照片:
FB.api("/me/picture?width=180&height=180"
如何获得用户的保障? 感谢
答案 0 :(得分:1)
查询封面图片时,会随对象返回其他信息。您必须遍历该对象并获取source
的值。
FB.api('/me?fields=cover', function(response) {
console.log(response.cover.source);
});
始终使用console.log(object);
查看其中包含的内容。