ngFacebook
ngFacebook copied to clipboard
Picture size
Hi! How can I retrieve user large size picture? Now I simply fetch data with:
$facebook.api("/me", {fields: 'id, name, email, picture'}).then(function(response){ console.log(response.picture) }
but user picture is too small..
thanks!
Hey @alearcy , use it!
$facebook.api('/me/picture', { height: '400' }).then(function(response) { console.log('UserPicture:', response); });
@alearcy http://graph.facebook.com/FBUID/picture?height=512
https://developers.facebook.com/docs/graph-api/reference/user/picture/