I'm working on a web application which is mostly based of Facebook Graph API. I hold some user's data - actually , the possible public data available - such as profile picture, name and id. I wondered how I'll be able to get a direct link to a user cover picture of a user only by using his id? and I already got the User ID.
This is the code that I used to get the profile picture & it worked-
<img src="https://graph.facebook.com/{{user.id}}/picture?type=large" style="float:left;"/>
Now I want to get cover picture.
Thanks in advance.
user.id? - Kalhan.Toress