FOSFacebookBundle icon indicating copy to clipboard operation
FOSFacebookBundle copied to clipboard

How to get the cover

Open vdrouet opened this issue 11 years ago • 1 comments

I want to get the Facebook cover when a new user logIn, this field is not in the $fbdata array. Any idea how can i get it in the facebook graph using fosfacebookbundle ?

Thanks a lot

vdrouet avatar Feb 22 '14 14:02 vdrouet

Using the Graph API Explorer I found out that /username?fields=cover will give you a cover object

{ "cover": { "id": "12345678900987654321", "source": "https://fbcdn-sphotos-h-a.akamaihd.net/hphotos-ak-frc3/t1/s720x720/1234567890.jpg", "offset_y": 0 }, "id": "1234567890" }

so $this->container->get('fos_facebook.api')->api('/me?fields=cover') will get the object for the current user logged in.

tvl83 avatar Mar 03 '14 02:03 tvl83