I know that the Facebook graph api for a profile picture is pretty simple to use:
http://graph.facebook.com/timothy.potter2/picture
This redirects to the image and I can use it in a standard html img tag as a hotlinked image
I'm looking of how to do this with cover photos in ideally the same way, so I can link my Church's facebook cover image to the website header.
I have got this so far:
http://graph.facebook.com/32533442649?fields=cover.source
which returns this:
{
"cover": {
"source": "https://scontent-a.xx.fbcdn.net/hphotos-xpa1/v/t1.0-9/s720x720/10731043_10152857370877650_9073058844184642679_n.jpg?oh=95190ad300e507211cbd840f619fe606&oe=5516F829",
"id": "10152857370877650"
},
"id": "32533442649"
}
How do I get it to return the image instead? Any code that can be pasted straight into html would be greatly appreciated. Thanks