I've built my own blog with Facebook login. Currently, I'm using the following to show my FB user's profile picture at the top of the blog, to show they are signed in:
<img src="https://graph.facebook.com/[profileID]/picture">
Now I want to add profile pictures to each and every comment left on a blog article, and there are 20 comments per page. This means there are 21 requests going to FB for profile pics. Is this a good idea or should I be grabbing the profile picture from FB (programatically of course) and storing it locally?
I know how to grab the picture if I need to, I just want to know if what I'm doing is right or wrong? Very occasionally, I notice a little lag just loading one profile picture from FB, I'm concerned about loading 20 different ones.