How to get the picture of Facebook User using Koala gem?

前端 未结 6 1253
伪装坚强ぢ
伪装坚强ぢ 2021-02-09 17:14

I am trying to fetch the picture of a Facebook user\'s friends using their facebook ids, but using the following code returns nil instead of the picture url...

The code

6条回答
  •  执念已碎
    2021-02-09 18:20

    You can also get all friends with their pictures using get_connection() as follows

    friends = @graph.get_connections("me", "friends?fields=id,name,picture.type(large)")
    

提交回复
热议问题