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

前端 未结 6 1271
伪装坚强ぢ
伪装坚强ぢ 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:11

      USER_PROFILE_OPTIONS = {
        fields: %w(id first_name last_name hometown email 
                   gender birthday picture.width(320))
      }.freeze
      @graph = Koala::Facebook::API.new(oauth_access_token)
      @graph.get_object('me', USER_PROFILE_OPTIONS)
    

    See: https://developers.facebook.com/docs/graph-api/reference/user/picture/

提交回复
热议问题