I can request the Facebook API to get a list of friends with tags:
FB.api('me/taggable_friends', function (taggable) { document.getElementById('friends').innerHTML = JSON.stringify(taggable); });
But this only returns the URL to the tiny profile. I would like to get a full size picture.
Are non-user photos still available on Facebook Open Graph v2.0?
The link above has a comment by Simon Cross who says: βCan you use ...? Fields = width (n), height (n) to get a larger image,β but I can't figure out the correct syntax.
Does anyone know how this works?
thanks
facebook facebook-graph-api facebook-javascript-sdk
Andrew
source share